diff options
author | Joachim StroĢmbergson <joachim@secworks.se> | 2015-02-02 21:10:00 +0100 |
---|---|---|
committer | Joachim StroĢmbergson <joachim@secworks.se> | 2015-02-02 21:10:00 +0100 |
commit | 533b26e915026843508d36f662dbbcfa64742065 (patch) | |
tree | 9b9b49fac042ddc315ec2b76761f92e43b042281 /sw/test-sha256/Makefile | |
parent | eff75209176003629d3840809fc220a458fd89f7 (diff) |
Adding initial version of test code for sha256 core.
Diffstat (limited to 'sw/test-sha256/Makefile')
-rwxr-xr-x | sw/test-sha256/Makefile | 11 |
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 |