diff options
Diffstat (limited to 'src/lib/libressl/Makefile')
-rw-r--r-- | src/lib/libressl/Makefile | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/src/lib/libressl/Makefile b/src/lib/libressl/Makefile index 0a481f0009..f21c0474ed 100644 --- a/src/lib/libressl/Makefile +++ b/src/lib/libressl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.4 2014/07/13 23:36:24 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.5 2014/10/08 19:01:40 tedu Exp $ |
2 | 2 | ||
3 | CFLAGS+= -Wall -Werror -Wimplicit | 3 | CFLAGS+= -Wall -Werror -Wimplicit |
4 | CFLAGS+= -DLIBRESSL_INTERNAL | 4 | CFLAGS+= -DLIBRESSL_INTERNAL |
@@ -16,6 +16,34 @@ SRCS= ressl.c \ | |||
16 | ressl_util.c \ | 16 | ressl_util.c \ |
17 | ressl_verify.c | 17 | ressl_verify.c |
18 | 18 | ||
19 | MAN= ressl_init.3 | ||
20 | |||
21 | MLINKS+=ressl_init.3 ressl_error.3 | ||
22 | MLINKS+=ressl_init.3 ressl_config_new.3 | ||
23 | MLINKS+=ressl_init.3 ressl_config_free.3 | ||
24 | MLINKS+=ressl_init.3 ressl_set_ca_file.3 | ||
25 | MLINKS+=ressl_init.3 ressl_set_ca_path.3 | ||
26 | MLINKS+=ressl_init.3 ressl_set_cert_file.3 | ||
27 | MLINKS+=ressl_init.3 ressl_set_cert_mem.3 | ||
28 | MLINKS+=ressl_init.3 ressl_set_ciphers.3 | ||
29 | MLINKS+=ressl_init.3 ressl_set_ecdhcurve.3 | ||
30 | MLINKS+=ressl_init.3 ressl_set_key_file.3 | ||
31 | MLINKS+=ressl_init.3 ressl_set_key_mem.3 | ||
32 | MLINKS+=ressl_init.3 ressl_set_protocols.3 | ||
33 | MLINKS+=ressl_init.3 ressl_set_verify_depth.3 | ||
34 | MLINKS+=ressl_init.3 ressl_clear_keys.3 | ||
35 | MLINKS+=ressl_init.3 ressl_insecure_noverifyhost.3 | ||
36 | MLINKS+=ressl_init.3 ressl_insecure_noverifycert.3 | ||
37 | MLINKS+=ressl_init.3 ressl_verify.3 | ||
38 | MLINKS+=ressl_init.3 ressl_configure.3 | ||
39 | MLINKS+=ressl_init.3 ressl_reset.3 | ||
40 | MLINKS+=ressl_init.3 ressl_free.3 | ||
41 | MLINKS+=ressl_init.3 ressl_close.3 | ||
42 | MLINKS+=ressl_init.3 ressl_connect.3 | ||
43 | MLINKS+=ressl_init.3 ressl_connect_socket.3 | ||
44 | MLINKS+=ressl_init.3 ressl_read.3 | ||
45 | MLINKS+=ressl_init.3 ressl_write.3 | ||
46 | |||
19 | includes: | 47 | includes: |
20 | @cd ${.CURDIR}; for i in $(HDRS); do \ | 48 | @cd ${.CURDIR}; for i in $(HDRS); do \ |
21 | j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \ | 49 | j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \ |