aboutsummaryrefslogtreecommitdiff
path: root/sw/Makefile
diff options
context:
space:
mode:
authorJoachim StroĢˆmbergson <joachim@secworks.se>2015-05-13 17:43:29 +0200
committerJoachim StroĢˆmbergson <joachim@secworks.se>2015-05-13 17:43:29 +0200
commitfc6b7ce367eaeda3772575be2bc265a8521ffa84 (patch)
tree1c8b3c34833ff6d0f4cdc0007ada690b69801c01 /sw/Makefile
parentf2164aa044c4166b918fc7b3c51d4c9a0755de47 (diff)
Added aes_tester as build target. Added initial version of aes_tester program with NIST test vectors.
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 $@ $^