]> git.cryptolib.org Git - avr-crypto-lib.git/blob - mkfiles/sha2_c.mk
fixing style, typos and uart
[avr-crypto-lib.git] / mkfiles / sha2_c.mk
1 # Makefile for SHA-2
2 ALGO_NAME := SHA2_C
3
4 # comment out the following line for removement of SHA-2 from the build process
5 HASHES += $(ALGO_NAME)
6
7 $(ALGO_NAME)_DIR      := sha2/
8 $(ALGO_NAME)_INCDIR   := hfal/
9 $(ALGO_NAME)_OBJ      := sha224.o sha256.o sha384.o sha512.o \
10                          sha2_small_common.o sha2_large_common.o 
11 $(ALGO_NAME)_TESTBIN := main-sha2-test.o $(CLI_STD) $(HFAL_STD) \
12                         hfal_sha224.o hfal_sha256.o hfal_sha512.o hfal_sha384.o
13 $(ALGO_NAME)_NESSIE_TEST      := "nessie"
14 $(ALGO_NAME)_PERFORMANCE_TEST := "performance"
15