28 řádky
1.2 KiB
Makefile
28 řádky
1.2 KiB
Makefile
CC = /usr/bin/gcc
|
|
CFLAGS = -Wall -g -O3
|
|
|
|
all: test/test_chacha \
|
|
test/test_wots \
|
|
test/test_xmss \
|
|
test/test_xmssmt
|
|
|
|
test/test_chacha: chacha.c prg.c randombytes.c test/test_chacha.c chacha.h prg.h randombytes.h
|
|
$(CC) $(CFLAGS) chacha.c prg.c randombytes.c test/test_chacha.c -o $@ #-lcrypto -lm
|
|
|
|
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
|
|
|
|
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
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
-rm *.o *.s
|
|
-rm test/test_chacha
|
|
-rm test/test_wots
|
|
-rm test/test_xmss
|
|
-rm test/test_xmssmt
|