aboutsummaryrefslogtreecommitdiff
path: root/sw/Makefile
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2015-02-10 13:51:40 -0500
committerPaul Selkirk <paul@psgd.org>2015-02-10 13:51:40 -0500
commit0e4e0b5d71b15e1f4edf31295fc95d45d4ae3890 (patch)
tree66d95e0c6d61801a1f72de5b8f8af89a5b9d85cd /sw/Makefile
parent560ebacb0c576b92d7b64d728423683ad974885e (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/Makefile')
-rwxr-xr-xsw/Makefile14
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