]> git.cryptolib.org Git - avr-crypto-lib.git/blob - mkfiles/arcfour.mk
fixing style, typos and uart
[avr-crypto-lib.git] / mkfiles / arcfour.mk
1 # Makefile for ARCFOUR (RC4 compatible)
2 ALGO_NAME := ARCFOUR
3
4 # comment out the following line for removement of ARCFOUR from the build process
5 STREAM_CIPHERS += $(ALGO_NAME)
6
7 $(ALGO_NAME)_DIR      := arcfour/
8 $(ALGO_NAME)_OBJ      := arcfour-asm.o
9 $(ALGO_NAME)_INCDIR   := memxor/ scal/
10 $(ALGO_NAME)_TESTBIN  := main-arcfour-test.o $(CLI_STD) $(SCAL_STD) scal_arcfour.o
11 $(ALGO_NAME)_NESSIE_TEST      := "nessie"
12 $(ALGO_NAME)_PERFORMANCE_TEST := "performance"
13