summaryrefslogtreecommitdiff
path: root/src/usr.sbin/ocspcheck/Makefile
diff options
context:
space:
mode:
authorbeck <>2017-01-24 08:50:57 +0000
committerbeck <>2017-01-24 08:50:57 +0000
commitf748422c1c8c084effc6cacbef92cb4ee75c13d6 (patch)
treea8f074f9e36fc17e90b2be5b61a6676a5a58757c /src/usr.sbin/ocspcheck/Makefile
parent461ec96400c0a98b56a42533ecf86de58bc3c16f (diff)
downloadopenbsd-f748422c1c8c084effc6cacbef92cb4ee75c13d6.tar.gz
openbsd-f748422c1c8c084effc6cacbef92cb4ee75c13d6.tar.bz2
openbsd-f748422c1c8c084effc6cacbef92cb4ee75c13d6.zip
New ocspcheck utility to validate a certificate against its ocsp responder
and save the reply for stapling ok deraadt@ jsing@
Diffstat (limited to 'src/usr.sbin/ocspcheck/Makefile')
-rw-r--r--src/usr.sbin/ocspcheck/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/usr.sbin/ocspcheck/Makefile b/src/usr.sbin/ocspcheck/Makefile
new file mode 100644
index 0000000000..55d9b5b763
--- /dev/null
+++ b/src/usr.sbin/ocspcheck/Makefile
@@ -0,0 +1,24 @@
1# $OpenBSD: Makefile,v 1.1 2017/01/24 08:50:57 beck Exp $
2
3PROG= ocspcheck
4
5LDADD= -ltls -lssl -lcrypto
6DPADD= ${LIBTLS} ${LIBSSL} ${LIBCRYPTO}
7MAN= ocspcheck.8
8
9CFLAGS+= -Wall -Werror
10CFLAGS+= -Wformat
11CFLAGS+= -Wformat-security
12CFLAGS+= -Wimplicit
13CFLAGS+= -Wreturn-type
14CFLAGS+= -Wshadow
15CFLAGS+= -Wtrigraphs
16CFLAGS+= -Wuninitialized
17CFLAGS+= -Wunused
18
19CFLAGS+= -DLIBRESSL_INTERNAL
20
21SRCS= ocspcheck.c http.c
22
23
24.include <bsd.prog.mk>