summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/sm2/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/sm2/Makefile')
-rw-r--r--src/regress/lib/libcrypto/sm2/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/sm2/Makefile b/src/regress/lib/libcrypto/sm2/Makefile
new file mode 100644
index 0000000000..8aa07f7155
--- /dev/null
+++ b/src/regress/lib/libcrypto/sm2/Makefile
@@ -0,0 +1,23 @@
1# $OpenBSD: Makefile,v 1.1.1.1 2021/08/18 16:06:56 tb Exp $
2
3PROGS += sm2crypttest
4PROGS += sm2evptest
5PROGS += sm2sigtest
6
7LDADD = ${CRYPTO_INT}
8DPADD = ${LIBCRYPTO}
9WARNINGS = Yes
10
11CFLAGS += -DLIBRESSL_INTERNAL -Wundef -Werror
12CFLAGS += -I${BSDSRCDIR}/lib/libcrypto/sm2
13CFLAGS += -I${BSDSRCDIR}/regress/lib/libssl/unit
14
15.for p in ${PROGS}
16REGRESS_TARGETS += run-$p
17run-$p: $p
18 @echo '\n======== $@ ========'
19 ./$p
20.PHONY: run-$p
21.endfor
22
23.include <bsd.regress.mk>