]> git.cryptolib.org Git - avr-crypto-lib.git/blob - mkfiles/base64.mk
013b7ee05787ecb0b69510bf2b207026bf790808
[avr-crypto-lib.git] / mkfiles / base64.mk
1 # Makefile for Base64-encoding
2 ALGO_NAME := BASE64
3
4 # comment out the following line for removement of base64 from the build process
5 ENCODINGS += $(ALGO_NAME)
6
7 $(ALGO_NAME)_DIR      := base64/
8 $(ALGO_NAME)_OBJ      := base64_enc.o base64_dec.o
9 $(ALGO_NAME)_TEST_BIN := main-base64-test.o $(CLI_STD)  \
10                          performance_test.o noekeon_asm.o noekeon_prng.o memxor.o
11                          
12 $(ALGO_NAME)_PERFORMANCE_TEST := performance
13