]> git.cryptolib.org Git - avr-crypto-lib.git/blob - mkfiles/gcm.mk
new and more compact aes
[avr-crypto-lib.git] / mkfiles / gcm.mk
1 # Makefile for GCM
2 ALGO_NAME := GCM
3
4 # comment out the following line for removement of AES from the build process
5 AEAD_CIPHERS += $(ALGO_NAME)
6
7 $(ALGO_NAME)_DIR      := gcm/
8 $(ALGO_NAME)_INCDIR   := memxor/ aes/ gf256mul/ bcal/
9 $(ALGO_NAME)_OBJ      := gcm128.o \
10                          aes_enc-asm.o aes_sbox-asm.o \
11                          aes_keyschedule-asm.o memxor.o
12 $(ALGO_NAME)_TESTBIN  := main-gcm-test.o $(CLI_STD) $(BCAL_STD)  \
13                          bcal_aes128_enconly.o bcal_aes192_enconly.o bcal_aes256_enconly.o  \
14                          dump-asm.o dump-decl.o
15 $(ALGO_NAME)_NESSIE_TEST      := test nessie
16 $(ALGO_NAME)_PERFORMANCE_TEST := performance
17