diff options
author | Paul Selkirk <paul@psgd.org> | 2015-04-02 15:07:22 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-04-02 15:07:22 -0400 |
commit | b1ebb2a975de7f29e63c3a4046de15c26b44dceb (patch) | |
tree | 20c6e29fa7f51953a83629146bcf61ad556092ab /eim/sw/Makefile | |
parent | aea9e93e560b1468bf0ff2cf5b61e5409ce60dc5 (diff) |
Add trng_extractor app to eim and i2c, refactor i2c apps to use common memory map.
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 263a327..8b5f974 100755 --- a/eim/sw/Makefile +++ b/eim/sw/Makefile @@ -1,4 +1,4 @@ -all: hash_tester_eim trng_tester_eim hash_eim +all: hash_tester_eim trng_tester_eim hash_eim trng_extractor_eim .c.o: gcc -c -Wall -o $@ $< @@ -18,9 +18,14 @@ hash_eim: hash_eim.o novena-eim.o tc_eim.o hash_eim.o: hash_eim.c tc_eim.h +trng_extractor_eim: trng_extractor_eim.o novena-eim.o tc_eim.o + gcc -o $@ $^ + +trng_extractor_eim.o: trng_extractor_eim.c tc_eim.h cryptech_memory_map.h + novena-eim.o: novena-eim.c novena-eim.h tc_eim.o: tc_eim.c tc_eim.h novena-eim.h clean: - rm -f *.o hash_tester_eim trng_tester_eim hash_eim + rm -f *.o hash_tester_eim trng_tester_eim hash_eim trng_extractor_eim |