diff options
Diffstat (limited to 'src/regress/lib/libcrypto/ct/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/ct/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/ct/Makefile b/src/regress/lib/libcrypto/ct/Makefile new file mode 100644 index 0000000000..ba93566d29 --- /dev/null +++ b/src/regress/lib/libcrypto/ct/Makefile | |||
@@ -0,0 +1,19 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2021/12/05 13:01:08 jsing Exp $ | ||
2 | |||
3 | PROG= cttest | ||
4 | LDADD= ${CRYPTO_INT} | ||
5 | DPADD= ${LIBCRYPTO} | ||
6 | |||
7 | WARNINGS= Yes | ||
8 | CFLAGS+= -Wundef -Werror | ||
9 | CFLAGS+= -DLIBRESSL_CRYPTO_INTERNAL -DLIBRESSL_INTERNAL | ||
10 | CFLAGS+= -I$(BSDSRCDIR)/lib/libcrypto | ||
11 | |||
12 | REGRESS_TARGETS= \ | ||
13 | regress-cttest | ||
14 | |||
15 | regress-cttest: ${PROG} | ||
16 | ./cttest \ | ||
17 | ${.CURDIR}/../../libcrypto/ct/libressl.org.crt | ||
18 | |||
19 | .include <bsd.regress.mk> | ||