aboutsummaryrefslogtreecommitdiff
path: root/sw/test-sha256/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sw/test-sha256/Makefile')
-rwxr-xr-xsw/test-sha256/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/sw/test-sha256/Makefile b/sw/test-sha256/Makefile
new file mode 100755
index 0000000..c513ed0
--- /dev/null
+++ b/sw/test-sha256/Makefile
@@ -0,0 +1,11 @@
+all: test-sha256
+
+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 novena-eim.c
+ gcc -c test-sha256.c
+ gcc -c novena-eim.c
+
+clean:
+ rm -f *.o test-sha256