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

15 lines
479 B
Makefile
Raw Permalink Normal View History

# Makefile for HMAC-SHA1
2008-07-16 13:22:00 +00:00
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/
2010-09-25 12:04:19 +00:00
$(ALGO_NAME)_INCDIR := sha1/
2008-07-16 13:22:00 +00:00
$(ALGO_NAME)_OBJ := hmac-sha1.o sha1-asm.o
2012-03-14 16:38:51 +00:00
$(ALGO_NAME)_TESTBIN := main-hmac-sha1-test.o $(CLI_STD) \
2009-07-29 09:49:57 +00:00
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