aboutsummaryrefslogtreecommitdiff
path: root/sw/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sw/Makefile')
-rwxr-xr-xsw/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/sw/Makefile b/sw/Makefile
index 0dbd61a..0e24e7b 100755
--- a/sw/Makefile
+++ b/sw/Makefile
@@ -2,7 +2,7 @@ CC = gcc
CFLAGS = -Wall -fPIC
LIB = libcryptech.a
-BIN = hash hash_tester trng_extractor trng_tester
+BIN = hash hash_tester trng_extractor trng_tester aes_tester
INC = cryptech.h
PREFIX = /usr/local
@@ -24,6 +24,9 @@ hash_tester: hash_tester.o $(LIB)
trng_tester: trng_tester.o $(LIB)
$(CC) -o $@ $^
+aes_tester: aes_tester.o $(LIB)
+ $(CC) -o $@ $^
+
hash: hash.o $(LIB)
$(CC) -o $@ $^