diff options
author | beck <> | 2017-01-24 08:50:57 +0000 |
---|---|---|
committer | beck <> | 2017-01-24 08:50:57 +0000 |
commit | f748422c1c8c084effc6cacbef92cb4ee75c13d6 (patch) | |
tree | a8f074f9e36fc17e90b2be5b61a6676a5a58757c /src/usr.sbin/ocspcheck/Makefile | |
parent | 461ec96400c0a98b56a42533ecf86de58bc3c16f (diff) | |
download | openbsd-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/Makefile | 24 |
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 | |||
3 | PROG= ocspcheck | ||
4 | |||
5 | LDADD= -ltls -lssl -lcrypto | ||
6 | DPADD= ${LIBTLS} ${LIBSSL} ${LIBCRYPTO} | ||
7 | MAN= ocspcheck.8 | ||
8 | |||
9 | CFLAGS+= -Wall -Werror | ||
10 | CFLAGS+= -Wformat | ||
11 | CFLAGS+= -Wformat-security | ||
12 | CFLAGS+= -Wimplicit | ||
13 | CFLAGS+= -Wreturn-type | ||
14 | CFLAGS+= -Wshadow | ||
15 | CFLAGS+= -Wtrigraphs | ||
16 | CFLAGS+= -Wuninitialized | ||
17 | CFLAGS+= -Wunused | ||
18 | |||
19 | CFLAGS+= -DLIBRESSL_INTERNAL | ||
20 | |||
21 | SRCS= ocspcheck.c http.c | ||
22 | |||
23 | |||
24 | .include <bsd.prog.mk> | ||