2015-08-11 11:08:27 +01:00
|
|
|
CC = /usr/bin/gcc
|
|
|
|
CFLAGS = -Wall -g -O3
|
|
|
|
|
|
|
|
all: test/test_chacha \
|
|
|
|
test/test_wots \
|
2015-08-12 13:37:49 +01:00
|
|
|
test/test_xmss \
|
2015-08-21 14:06:07 +01:00
|
|
|
test/test_xmss_fast \
|
2015-09-21 12:24:42 +01:00
|
|
|
test/test_xmssmt_fast \
|
2015-08-12 13:37:49 +01:00
|
|
|
test/test_xmssmt
|
2015-08-11 11:08:27 +01:00
|
|
|
|
|
|
|
test/test_chacha: chacha.c prg.c randombytes.c test/test_chacha.c chacha.h prg.h randombytes.h
|
2015-10-28 13:26:08 +00:00
|
|
|
$(CC) $(CFLAGS) chacha.c prg.c randombytes.c test/test_chacha.c -o $@ -lcrypto -lm
|
2015-08-11 11:08:27 +01:00
|
|
|
|
|
|
|
test/test_wots: chacha.c hash.c prg.c randombytes.c wots.c xmss_commons.c test/test_wots.c chacha.h hash.h prg.h randombytes.h wots.h xmss_commons.h
|
|
|
|
$(CC) $(CFLAGS) chacha.c hash.c prg.c randombytes.c wots.c xmss_commons.c test/test_wots.c -o $@ -lcrypto -lm
|
|
|
|
|
|
|
|
test/test_xmss: chacha.c hash.c prg.c randombytes.c wots.c xmss.c xmss_commons.c test/test_xmss.c chacha.h hash.h prg.h randombytes.h wots.h xmss.h xmss_commons.h
|
|
|
|
$(CC) $(CFLAGS) chacha.c hash.c prg.c randombytes.c wots.c xmss.c xmss_commons.c test/test_xmss.c -o $@ -lcrypto -lm
|
2015-08-04 13:37:25 +01:00
|
|
|
|
2015-08-21 14:06:07 +01:00
|
|
|
test/test_xmss_fast: chacha.c hash.c prg.c randombytes.c wots.c xmss_fast.c xmss_commons.c test/test_xmss_fast.c chacha.h hash.h prg.h randombytes.h wots.h xmss_fast.h xmss_commons.h
|
|
|
|
$(CC) $(CFLAGS) chacha.c hash.c prg.c randombytes.c wots.c xmss_fast.c xmss_commons.c test/test_xmss_fast.c -o $@ -lcrypto -lm
|
|
|
|
|
2015-08-12 13:37:49 +01:00
|
|
|
test/test_xmssmt: chacha.c hash.c prg.c randombytes.c wots.c xmss.c xmss_commons.c test/test_xmssmt.c chacha.h hash.h prg.h randombytes.h wots.h xmss.h xmss_commons.h
|
|
|
|
$(CC) $(CFLAGS) chacha.c hash.c prg.c randombytes.c wots.c xmss.c xmss_commons.c test/test_xmssmt.c -o $@ -lcrypto -lm
|
|
|
|
|
2015-09-21 12:24:42 +01:00
|
|
|
test/test_xmssmt_fast: chacha.c hash.c prg.c randombytes.c wots.c xmss_fast.c xmss_commons.c test/test_xmssmt_fast.c chacha.h hash.h prg.h randombytes.h wots.h xmss_fast.h xmss_commons.h
|
|
|
|
$(CC) $(CFLAGS) chacha.c hash.c prg.c randombytes.c wots.c xmss_fast.c xmss_commons.c test/test_xmssmt_fast.c -o $@ -lcrypto -lm
|
|
|
|
|
2015-08-12 13:37:49 +01:00
|
|
|
.PHONY: clean
|
|
|
|
|
2015-08-04 13:37:25 +01:00
|
|
|
clean:
|
2015-08-12 13:37:49 +01:00
|
|
|
-rm *.o *.s
|
2015-08-12 16:59:29 +01:00
|
|
|
-rm test/test_chacha
|
2015-08-12 13:37:49 +01:00
|
|
|
-rm test/test_wots
|
2015-08-12 16:59:29 +01:00
|
|
|
-rm test/test_xmss
|
2015-09-21 12:24:42 +01:00
|
|
|
-rm test/test_xmss_fast
|
2015-08-12 14:38:25 +01:00
|
|
|
-rm test/test_xmssmt
|
2015-09-21 12:24:42 +01:00
|
|
|
-rm test/test_xmssmt_fast
|
2015-08-12 17:04:16 +01:00
|
|
|
|
|
|
|
|