summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/mlkem/Makefile44
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
3PROGS += mlkem_unittest 3PROGS += mlkem768_decap_tests
4PROGS += mlkem768_nist_keygen_tests 4PROGS += mlkem768_encap_tests
5PROGS += mlkem768_keygen_tests 5PROGS += mlkem768_iteration_test
6PROGS += mlkem768_nist_decap_tests 6PROGS += mlkem768_keygen_tests
7PROGS += mlkem768_decap_tests 7PROGS += mlkem768_nist_decap_tests
8PROGS += mlkem768_encap_tests 8PROGS += mlkem768_nist_keygen_tests
9PROGS += mlkem768_iteration_test 9PROGS += mlkem1024_decap_tests
10PROGS += mlkem1024_nist_keygen_tests 10PROGS += mlkem1024_encap_tests
11PROGS += mlkem1024_keygen_tests 11PROGS += mlkem1024_iteration_test
12PROGS += mlkem1024_nist_decap_tests 12PROGS += mlkem1024_keygen_tests
13PROGS += mlkem1024_decap_tests 13PROGS += mlkem1024_nist_decap_tests
14PROGS += mlkem1024_encap_tests 14PROGS += mlkem1024_nist_keygen_tests
15PROGS += mlkem1024_iteration_test 15PROGS += 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}
19SRCS_$p += $p.c mlkem_tests_util.c 19SRCS_$p += $p.c mlkem_tests_util.c
20 20
21REGRESS_TARGETS += run-$p 21REGRESS_TARGETS += run-$p
22run-$p: $p 22run-$p: $p
23 ./$p ${.CURDIR}/$p.txt 23 ./$p ${.CURDIR}/$p.txt
24.endfor 24.endfor
25 25
26LDADD = ${CRYPTO_INT} 26LDADD = ${CRYPTO_INT}
27DPADD = ${LIBCRYPTO} 27DPADD = ${LIBCRYPTO}
28 28
29CFLAGS += -DLIBRESSL_INTERNAL -Wall -Werror 29CFLAGS += -DLIBRESSL_INTERNAL -Wall -Werror
30CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bytestring 30CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bytestring
31CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/mlkem 31CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/mlkem
32CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/sha 32CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/sha
33CFLAGS += -DLIBRESSL_INTERNAL 33CFLAGS += -DLIBRESSL_INTERNAL
34 34
35WARNINGS = Yes 35WARNINGS = Yes
36 36