diff options
author | schwarze <> | 2017-01-25 23:53:18 +0000 |
---|---|---|
committer | schwarze <> | 2017-01-25 23:53:18 +0000 |
commit | 35fdef4d614c3469f40e63e53b292de178a9e20c (patch) | |
tree | fef38b6a567bfd2a81ea86890fca7a8ed7a42cff /src/lib/libtls/Makefile | |
parent | 276285ad64cc31b4a733563d702dd870939e4e53 (diff) | |
download | openbsd-35fdef4d614c3469f40e63e53b292de178a9e20c.tar.gz openbsd-35fdef4d614c3469f40e63e53b292de178a9e20c.tar.bz2 openbsd-35fdef4d614c3469f40e63e53b292de178a9e20c.zip |
split the tls_init(3) that had grown fat to allow healthy future growth;
suggested by jsing@; "i would just chuck it in" jmc@
Diffstat (limited to 'src/lib/libtls/Makefile')
-rw-r--r-- | src/lib/libtls/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/lib/libtls/Makefile b/src/lib/libtls/Makefile index af860bb067..d528ddf5ee 100644 --- a/src/lib/libtls/Makefile +++ b/src/lib/libtls/Makefile | |||
@@ -1,4 +1,9 @@ | |||
1 | # $OpenBSD: Makefile,v 1.29 2016/11/05 08:12:22 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.30 2017/01/25 23:53:18 schwarze Exp $ |
2 | |||
3 | .include <bsd.own.mk> | ||
4 | .ifndef NOMAN | ||
5 | SUBDIR= man | ||
6 | .endif | ||
2 | 7 | ||
3 | CFLAGS+= -Wall -Werror -Wimplicit | 8 | CFLAGS+= -Wall -Werror -Wimplicit |
4 | CFLAGS+= -DLIBRESSL_INTERNAL | 9 | CFLAGS+= -DLIBRESSL_INTERNAL |
@@ -30,8 +35,6 @@ SRCS= tls.c \ | |||
30 | tls_ocsp.c \ | 35 | tls_ocsp.c \ |
31 | tls_verify.c | 36 | tls_verify.c |
32 | 37 | ||
33 | MAN= tls_init.3 | ||
34 | |||
35 | includes: | 38 | includes: |
36 | @cd ${.CURDIR}; for i in $(HDRS); do \ | 39 | @cd ${.CURDIR}; for i in $(HDRS); do \ |
37 | j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \ | 40 | j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \ |