diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/mlkem/Makefile | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/src/regress/lib/libcrypto/mlkem/Makefile b/src/regress/lib/libcrypto/mlkem/Makefile index a3eecb376f..cb24605bd7 100644 --- a/src/regress/lib/libcrypto/mlkem/Makefile +++ b/src/regress/lib/libcrypto/mlkem/Makefile | |||
@@ -1,36 +1,36 @@ | |||
1 | # $OpenBSD: Makefile,v 1.6 2024/12/20 01:51:27 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.7 2024/12/20 01:53:46 tb Exp $ |
2 | 2 | ||
3 | PROGS += mlkem_unittest | 3 | PROGS += mlkem768_decap_tests |
4 | PROGS += mlkem768_nist_keygen_tests | 4 | PROGS += mlkem768_encap_tests |
5 | PROGS += mlkem768_keygen_tests | 5 | PROGS += mlkem768_iteration_test |
6 | PROGS += mlkem768_nist_decap_tests | 6 | PROGS += mlkem768_keygen_tests |
7 | PROGS += mlkem768_decap_tests | 7 | PROGS += mlkem768_nist_decap_tests |
8 | PROGS += mlkem768_encap_tests | 8 | PROGS += mlkem768_nist_keygen_tests |
9 | PROGS += mlkem768_iteration_test | 9 | PROGS += mlkem1024_decap_tests |
10 | PROGS += mlkem1024_nist_keygen_tests | 10 | PROGS += mlkem1024_encap_tests |
11 | PROGS += mlkem1024_keygen_tests | 11 | PROGS += mlkem1024_iteration_test |
12 | PROGS += mlkem1024_nist_decap_tests | 12 | PROGS += mlkem1024_keygen_tests |
13 | PROGS += mlkem1024_decap_tests | 13 | PROGS += mlkem1024_nist_decap_tests |
14 | PROGS += mlkem1024_encap_tests | 14 | PROGS += mlkem1024_nist_keygen_tests |
15 | PROGS += mlkem1024_iteration_test | 15 | PROGS += mlkem_unittest |
16 | 16 | ||
17 | # Link test programs with mlkem_tests_util.c and use custom target | 17 | # Link test programs with mlkem_tests_util.c and use custom target |
18 | .for p in ${PROGS} | 18 | .for p in ${PROGS} |
19 | SRCS_$p += $p.c mlkem_tests_util.c | 19 | SRCS_$p += $p.c mlkem_tests_util.c |
20 | 20 | ||
21 | REGRESS_TARGETS += run-$p | 21 | REGRESS_TARGETS += run-$p |
22 | run-$p: $p | 22 | run-$p: $p |
23 | ./$p ${.CURDIR}/$p.txt | 23 | ./$p ${.CURDIR}/$p.txt |
24 | .endfor | 24 | .endfor |
25 | 25 | ||
26 | LDADD = ${CRYPTO_INT} | 26 | LDADD = ${CRYPTO_INT} |
27 | DPADD = ${LIBCRYPTO} | 27 | DPADD = ${LIBCRYPTO} |
28 | 28 | ||
29 | CFLAGS += -DLIBRESSL_INTERNAL -Wall -Werror | 29 | CFLAGS += -DLIBRESSL_INTERNAL -Wall -Werror |
30 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bytestring | 30 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bytestring |
31 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/mlkem | 31 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/mlkem |
32 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/sha | 32 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/sha |
33 | CFLAGS += -DLIBRESSL_INTERNAL | 33 | CFLAGS += -DLIBRESSL_INTERNAL |
34 | 34 | ||
35 | WARNINGS = Yes | 35 | WARNINGS = Yes |
36 | 36 | ||