avr-crypto-lib/mkfiles/hmac-sha1.mk

14 lines
450 B
Makefile
Raw Normal View History

2008-07-16 13:22:00 +00:00
# Makefile for HMAC-SHA256
ALGO_NAME := HMAC-SHA1
2009-02-25 20:22:32 +00:00
# comment out the following line for removement of HMAC-SHA1 from the build process
2008-07-16 13:22:00 +00:00
MACS += $(ALGO_NAME)
2009-08-06 20:11:02 +00:00
$(ALGO_NAME)_DIR := hmac-sha1/
2008-07-16 13:22:00 +00:00
$(ALGO_NAME)_OBJ := hmac-sha1.o sha1-asm.o
2009-07-29 09:49:57 +00:00
$(ALGO_NAME)_TEST_BIN := main-hmac-sha1-test.o $(CLI_STD) \
nessie_mac_test.o nessie_common.o
2008-07-16 13:22:00 +00:00
$(ALGO_NAME)_NESSIE_TEST := "nessie"
$(ALGO_NAME)_PERFORMANCE_TEST := "performance"
2008-07-16 13:22:00 +00:00