diff options
author | Paul Selkirk <paul@psgd.org> | 2015-02-10 13:51:40 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-02-10 13:51:40 -0500 |
commit | 0e4e0b5d71b15e1f4edf31295fc95d45d4ae3890 (patch) | |
tree | 66d95e0c6d61801a1f72de5b8f8af89a5b9d85cd /sw/test-sha256/Makefile | |
parent | 560ebacb0c576b92d7b64d728423683ad974885e (diff) |
First stage of integration cleanup.
Add local SHA core wrappers, due to the need for registered outputs.
Remove unused demo-adder code, and reorganize sw directory.
Diffstat (limited to 'sw/test-sha256/Makefile')
-rwxr-xr-x | sw/test-sha256/Makefile | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/sw/test-sha256/Makefile b/sw/test-sha256/Makefile deleted file mode 100755 index ee8536e..0000000 --- a/sw/test-sha256/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -all: test-sha256 hash_tester - -.c.o: - gcc -c -Wall -o $@ $< - -test-sha256 : test-sha256.o novena-eim.o - gcc -o test-sha256 test-sha256.o novena-eim.o - -test-sha256.o: test-sha256.c novena-eim.h - -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 test-adder test-sha256 hash_tester |