diff options
author | Paul Selkirk <paul@psgd.org> | 2015-03-25 01:05:30 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-03-25 01:05:30 -0400 |
commit | 2b874d345b386b1e037756e9fa5c05905f7444cf (patch) | |
tree | b9f0ed982c2dae3b9260e0d293cbf2d30d941c15 /eim/sw/Makefile | |
parent | 283bfbeeb7fb5767815c10ea98bb155638d4bfb3 (diff) |
integrate trng into core_selector framework
Diffstat (limited to 'eim/sw/Makefile')
-rwxr-xr-x | eim/sw/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eim/sw/Makefile b/eim/sw/Makefile index 9d28af7..87cd78f 100755 --- a/eim/sw/Makefile +++ b/eim/sw/Makefile @@ -1,4 +1,4 @@ -all: hash_tester_eim +all: hash_tester_eim trng_tester_eim .c.o: gcc -c -Wall -o $@ $< @@ -8,7 +8,12 @@ hash_tester_eim: hash_tester_eim.o novena-eim.o hash_tester_eim.o: hash_tester_eim.c novena-eim.h +trng_tester_eim: trng_tester_eim.o novena-eim.o + gcc -o $@ $^ + +trng_tester_eim.o: trng_tester_eim.c novena-eim.h + novena-eim.o: novena-eim.c novena-eim.h clean: - rm -f *.o hash_tester_eim + rm -f *.o hash_tester_eim trng_tester_eim |