diff options
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 $@ $^ |