From 533b26e915026843508d36f662dbbcfa64742065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Stro=CC=88mbergson?= Date: Mon, 2 Feb 2015 21:10:00 +0100 Subject: Adding initial version of test code for sha256 core. --- sw/test-sha256/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 sw/test-sha256/Makefile (limited to 'sw/test-sha256/Makefile') 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 -- cgit v1.2.3