2015-08-11 11:08:27 +01:00
|
|
|
CC = /usr/bin/gcc
|
2016-02-02 13:06:43 +00:00
|
|
|
CFLAGS = -Wall -g -O3 -Wextra
|
2015-08-11 11:08:27 +01:00
|
|
|
|
2016-07-11 10:15:16 +01:00
|
|
|
all: test/test_wots \
|
2017-06-02 13:10:24 +01:00
|
|
|
test/test_xmss_XMSS_SHA2-256_W16_H10 \
|
|
|
|
test/test_xmss_fast_XMSS_SHA2-256_W16_H10 \
|
|
|
|
test/test_xmssmt_fast_XMSSMT_SHA2-256_W16_H20_D4 \
|
|
|
|
test/test_xmssmt_XMSSMT_SHA2-256_W16_H20_D4
|
2015-08-11 11:08:27 +01:00
|
|
|
|
2017-06-02 13:10:24 +01:00
|
|
|
.PHONY: clean
|
|
|
|
.PRECIOUS: params_%.h
|
|
|
|
|
|
|
|
params_%.h: params.h.py
|
|
|
|
python3 params.h.py $(patsubst params_%.h,%,$@) > $@
|
|
|
|
|
2017-06-02 16:29:14 +01:00
|
|
|
test/test_wots: params_XMSS_SHA2-256_W16_H10.h hash.c fips202.c hash_address.c randombytes.c wots.c xmss_commons.c test/test_wots.c hash.h fips202.h hash_address.h randombytes.h wots.h xmss_commons.h
|
2017-06-02 13:10:24 +01:00
|
|
|
ln -sf params_XMSS_SHA2-256_W16_H10.h params.h
|
2017-06-02 16:29:14 +01:00
|
|
|
$(CC) $(CFLAGS) hash.c fips202.c hash_address.c randombytes.c wots.c xmss_commons.c test/test_wots.c -o $@ -lcrypto -lm
|
2017-06-02 13:10:24 +01:00
|
|
|
|
2017-06-02 16:29:14 +01:00
|
|
|
test/test_xmss_XMSS_%: params_XMSS_%.h hash.c fips202.c hash_address.c randombytes.c wots.c xmss.c xmss_commons.c test/test_xmss.c hash.h fips202.h hash_address.h randombytes.h wots.h xmss.h xmss_commons.h
|
2017-06-02 13:10:24 +01:00
|
|
|
ln -sf params_XMSS_$(patsubst test/test_xmss_XMSS_%,%,$@).h params.h
|
2017-06-02 16:29:14 +01:00
|
|
|
$(CC) $(CFLAGS) hash.c fips202.c hash_address.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
|
|
|
|
2017-06-02 16:29:14 +01:00
|
|
|
test/test_xmss_fast_XMSS_%: params_XMSS_%.h hash.c fips202.c hash_address.c randombytes.c wots.c xmss_fast.c xmss_commons.c test/test_xmss_fast.c hash.h fips202.h hash_address.h randombytes.h wots.h xmss_fast.h xmss_commons.h
|
2017-06-02 13:10:24 +01:00
|
|
|
ln -sf params_XMSS_$(patsubst test/test_xmss_fast_XMSS_%,%,$@).h params.h
|
2017-06-02 16:29:14 +01:00
|
|
|
$(CC) $(CFLAGS) hash.c fips202.c hash_address.c randombytes.c wots.c xmss_fast.c xmss_commons.c test/test_xmss_fast.c -o $@ -lcrypto -lm
|
2015-08-21 14:06:07 +01:00
|
|
|
|
2017-06-02 16:29:14 +01:00
|
|
|
test/test_xmssmt_XMSSMT_%: params_XMSSMT_%.h hash.c fips202.c hash_address.c randombytes.c wots.c xmss.c xmss_commons.c test/test_xmssmt.c hash.h fips202.h hash_address.h randombytes.h wots.h xmss.h xmss_commons.h
|
2017-06-02 13:10:24 +01:00
|
|
|
ln -sf params_XMSSMT_$(patsubst test/test_xmssmt_XMSSMT_%,%,$@).h params.h
|
2017-06-02 16:29:14 +01:00
|
|
|
$(CC) $(CFLAGS) hash.c fips202.c hash_address.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
|
|
|
|
2017-06-02 16:29:14 +01:00
|
|
|
test/test_xmssmt_fast_XMSSMT_%: params_XMSSMT_%.h hash.c fips202.c hash_address.c randombytes.c wots.c xmss_fast.c xmss_commons.c test/test_xmssmt_fast.c hash.h fips202.h hash_address.h randombytes.h wots.h xmss_fast.h xmss_commons.h
|
2017-06-02 13:10:24 +01:00
|
|
|
ln -sf params_XMSSMT_$(patsubst test/test_xmssmt_fast_XMSSMT_%,%,$@).h params.h
|
2017-06-02 16:29:14 +01:00
|
|
|
$(CC) $(CFLAGS) hash.c fips202.c hash_address.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
|
|
|
|
2015-08-04 13:37:25 +01:00
|
|
|
clean:
|
2015-08-12 13:37:49 +01:00
|
|
|
-rm *.o *.s
|
|
|
|
-rm test/test_wots
|
2017-06-02 13:10:24 +01:00
|
|
|
-rm test/test_xmss_XMSS*
|
|
|
|
-rm test/test_xmss_fast_XMSS*
|
|
|
|
-rm test/test_xmssmt_XMSS*
|
|
|
|
-rm test/test_xmssmt_fast_XMSS*
|
|
|
|
|
|
|
|
distclean:
|
|
|
|
-rm params.h
|
|
|
|
-rm params_XMSS*.h
|