]> git.cryptolib.org Git - avr-crypto-lib.git/blob - sha256.mk
arcfour got its own testsuit now + some modifications of the build process
[avr-crypto-lib.git] / sha256.mk
1 # Makefile for SHA256
2 ALGO_NAME := SHA256
3
4 # comment out the following line for removement of SHA256 from the build process
5 HASHES += $(ALGO_NAME)
6
7 $(ALGO_NAME)_OBJ      := sha256-asm.o
8 $(ALGO_NAME)_TEST_BIN := main.o debug.o uart.o serial-tools.o sha256-asm.o \
9                          xtea-asm.o arcfour-asm.o prng.o cast5.o
10 $(ALGO_NAME)_NESSIE_TEST      := "nessie"
11 $(ALGO_NAME)_PEROFRMANCE_TEST := "performance"
12