aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/crypto-algorithms
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-01-30 05:18:20 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-01-30 05:18:20 +0100
commitf48c84ca6c9549d1a4e54134811868617b6d0777 (patch)
treefca15cafd1a736067f9b7fe7fd31008e7b4110c0 /test/monniaux/crypto-algorithms
parent09341d6d5d8543a3fbf91f56148014e225df3d88 (diff)
downloadcompcert-kvx-f48c84ca6c9549d1a4e54134811868617b6d0777.tar.gz
compcert-kvx-f48c84ca6c9549d1a4e54134811868617b6d0777.zip
the state of things that work
Diffstat (limited to 'test/monniaux/crypto-algorithms')
-rw-r--r--test/monniaux/crypto-algorithms/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/monniaux/crypto-algorithms/Makefile b/test/monniaux/crypto-algorithms/Makefile
index d58c5a8c..9a282a29 100644
--- a/test/monniaux/crypto-algorithms/Makefile
+++ b/test/monniaux/crypto-algorithms/Makefile
@@ -5,14 +5,16 @@ K1C_CCOMP=../../../ccomp
K1C_CCOMPFLAGS=-Wall -O3 -D__thread= -D__int128=int -U __SIZE_TYPE__ -D __SIZE_TYPE__='unsigned long long'
-all: md2.all md5.all sha1.all sha256.all
+all: md2.all md5.all sha1.all sha256.all blowfish.all arcfour.all des.all
md2.all : md2_test.ccomp.k1c.out md2_test.gcc.k1c.out
md5.all : md5_test.ccomp.k1c.out md5_test.gcc.k1c.out
+arcfour.all : arcfour_test.ccomp.k1c.out arcfour_test.gcc.k1c.out
blowfish.all : blowfish_test.ccomp.k1c.out blowfish_test.gcc.k1c.out
rot-13.all : rot-13_test.ccomp.k1c.out rot-13_test.gcc.k1c.out
sha1.all : sha1_test.ccomp.k1c.out sha1_test.gcc.k1c.out
sha256.all : sha256_test.ccomp.k1c.out sha256_test.gcc.k1c.out
+des.all: des_test.ccomp.k1c.out des_test.gcc.k1c.out
%.gcc.k1c.s: %.c
$(K1C_CC) $(K1C_CFLAGS) -S $< -o $@
@@ -43,4 +45,4 @@ sha256.all : sha256_test.ccomp.k1c.out sha256_test.gcc.k1c.out
clean:
$(RM) -f *.s *.o *.out *.k1c *.host
-.PHONY: clean all md2.all md5.all rot-13.all sha1.all sha256.all md5.all blowfish.all
+.PHONY: clean all md2.all md5.all rot-13.all sha1.all sha256.all md5.all blowfish.all arcfour.all des.all