diff options
author | Paul Selkirk <paul@psgd.org> | 2015-07-17 10:31:26 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-07-17 10:31:26 -0400 |
commit | c44c8a77b56778c951fb09f94a577057573dbfa7 (patch) | |
tree | 5b9eea8bbdc21772e27844eb7b30549646da6e78 /sw/Makefile | |
parent | 33cc55adaf9ff31473802414f9c0d6e4a553cddf (diff) |
experimental modexps6 (which requires changing the read timing on all other cores)
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 928466e..63c9197 100755 --- a/sw/Makefile +++ b/sw/Makefile @@ -3,7 +3,7 @@ AR = ar CFLAGS = -Wall -fPIC LIB = libcryptech.a -BIN = hash hash_tester trng_extractor trng_tester aes_tester modexp_tester devmem3 +BIN = hash hash_tester trng_extractor trng_tester aes_tester modexp_tester modexps6_tester devmem3 INC = cryptech.h PREFIX = /usr/local @@ -31,6 +31,9 @@ aes_tester: aes_tester.o $(LIB) modexp_tester: modexp_tester.o $(LIB) $(CC) -o $@ $^ +modexps6_tester: modexps6_tester.o $(LIB) + $(CC) -o $@ $^ + hash: hash.o $(LIB) $(CC) -o $@ $^ |