diff options
author | Joachim StroĢmbergson <joachim@secworks.se> | 2015-05-19 18:24:08 +0200 |
---|---|---|
committer | Joachim StroĢmbergson <joachim@secworks.se> | 2015-05-19 18:24:08 +0200 |
commit | 021c35cc6fa778f83c890fc206808141c69fcb2d (patch) | |
tree | 99aaf457f1b9d3da3e9e8f4e0b91a7bc0aafcc68 /sw/Makefile | |
parent | d6ff18eac146c5a933eb7aadb034624d1ef54dc5 (diff) |
Adding a new test program for the modexp core. Adding build target for modexp_tester.
Diffstat (limited to 'sw/Makefile')
-rwxr-xr-x | sw/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sw/Makefile b/sw/Makefile index 0e24e7b..ba07ffd 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 aes_tester +BIN = hash hash_tester trng_extractor trng_tester trivial aestest aes_tester modexp_tester INC = cryptech.h PREFIX = /usr/local @@ -27,6 +27,9 @@ trng_tester: trng_tester.o $(LIB) aes_tester: aes_tester.o $(LIB) $(CC) -o $@ $^ +modexp_tester: modexp_tester.o $(LIB) + $(CC) -o $@ $^ + hash: hash.o $(LIB) $(CC) -o $@ $^ |