]> git.cryptolib.org Git - avr-crypto-lib.git/blob - mkfiles/aes.mk
fixing style, typos and uart
[avr-crypto-lib.git] / mkfiles / aes.mk
1 # Makefile for AES
2 ALGO_NAME := AES
3
4 # comment out the following line for removement of AES from the build process
5 BLOCK_CIPHERS += $(ALGO_NAME)
6
7 $(ALGO_NAME)_DIR      := aes/
8 $(ALGO_NAME)_INCDIR   := memxor/ gf256mul/ bcal/
9 $(ALGO_NAME)_OBJ      := aes_enc-asm.o aes_dec-asm.o aes_sbox-asm.o aes_invsbox-asm.o  \
10                          aes_keyschedule-asm.o 
11 $(ALGO_NAME)_TESTBIN  := main-aes-test.o $(CLI_STD) $(BCAL_STD)  \
12                          bcal_aes128.o bcal_aes192.o bcal_aes256.o bcal-cbc.o \
13                          dump-asm.o dump-decl.o bcal-cfb_byte.o       \
14                          bcal-cfb_bit.o bcal-ofb.o bcal-ctr.o bcal-cmac.o cmacvs.o         \
15                          bcal-eax.o memxor.o
16 $(ALGO_NAME)_NESSIE_TEST      := test nessie
17 $(ALGO_NAME)_PERFORMANCE_TEST := performance
18