diff options
author | Paul Selkirk <paul@psgd.org> | 2015-02-12 18:53:42 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-02-12 18:53:42 -0500 |
commit | 8f0faf9fa1ece195eaf102191c571a32d7c1a232 (patch) | |
tree | 7f690d0910da7dd24d841c83d96d1455bb3191f0 /sw/Makefile | |
parent | a758f34a103c9a58694f6bbe6b96a672e6881bef (diff) | |
parent | f135907b11d6511cd260c4ab751a2bee2f30b662 (diff) |
Merge branch 'coretest_hashes' of git.cryptech.is:test/novena_base into master
Diffstat (limited to 'sw/Makefile')
-rwxr-xr-x | sw/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sw/Makefile b/sw/Makefile new file mode 100755 index 0000000..b9fb6a2 --- /dev/null +++ b/sw/Makefile @@ -0,0 +1,14 @@ +all: hash_tester + +.c.o: + gcc -c -Wall -o $@ $< + +hash_tester : hash_tester.o novena-eim.o + gcc -o hash_tester hash_tester.o novena-eim.o + +hash_tester.o: hash_tester.c novena-eim.h + +novena-eim.o: novena-eim.c novena-eim.h + +clean: + rm -f *.o hash_tester |