]> git.cryptolib.org Git - avr-crypto-lib.git/blob - mkfiles/bigint.mk
fixing style, typos and uart
[avr-crypto-lib.git] / mkfiles / bigint.mk
1 # Makefile for BigInt
2 ALGO_NAME := BIGINT
3
4 # comment out the following line for removement of BigInt from the build process
5 AUX += $(ALGO_NAME)
6
7 $(ALGO_NAME)_DIR      := bigint/
8 $(ALGO_NAME)_INCDIR   := memxor/ noekeon/
9 #$(ALGO_NAME)_OBJ      := bigint-stub.o bigint_io.o bigint_asm.o 
10 $(ALGO_NAME)_OBJ      := bigint.o bigint_io.o
11 $(ALGO_NAME)_TESTBIN  := main-bigint-test.o $(CLI_STD)  \
12                          performance_test.o noekeon_asm.o noekeon_prng.o memxor.o
13                          
14 $(ALGO_NAME)_PERFORMANCE_TEST := performance
15