aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin/openssl/Makefile
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2000-08-03 05:29:04 +0000
committerKris Kennaway <kris@FreeBSD.org>2000-08-03 05:29:04 +0000
commit283cfe50aefd204cdfa74eba82959d61007353d0 (patch)
tree649b185a793a1bee6a23614d79873ff45323fb67 /secure/usr.bin/openssl/Makefile
parent3ea883b46df48148da3e21b98a4d44d839ffc9cf (diff)
downloadsrc-283cfe50aefd204cdfa74eba82959d61007353d0.tar.gz
src-283cfe50aefd204cdfa74eba82959d61007353d0.zip
Install the openssl(1) manpage with an MLINK from ssl(8) to at least put
something in the location where OpenSSH likes to point.
Notes
Notes: svn path=/head/; revision=64177
Diffstat (limited to 'secure/usr.bin/openssl/Makefile')
-rw-r--r--secure/usr.bin/openssl/Makefile18
1 files changed, 12 insertions, 6 deletions
diff --git a/secure/usr.bin/openssl/Makefile b/secure/usr.bin/openssl/Makefile
index 1cde16bdc24e..4aea4f09d294 100644
--- a/secure/usr.bin/openssl/Makefile
+++ b/secure/usr.bin/openssl/Makefile
@@ -1,14 +1,17 @@
# $FreeBSD$
+OPENSSL_SRC= ${.CURDIR}/../../../crypto/openssl/apps
+LCRYPTO_SRC= ${.CURDIR}/../../../crypto/openssl/crypto
+
+.PATH: ${OPENSSL_SRC} ${OPENSSL_SRC}/../doc/apps/
+
PROG= openssl
MAINTAINER= kris
LDADD= -lssl -lcrypto
-NOMAN= noman
-
-OPENSSL_SRC= ${.CURDIR}/../../../crypto/openssl/apps
-LCRYPTO_SRC= ${.CURDIR}/../../../crypto/openssl/crypto
+MAN1= openssl.1
+MLINKS= openssl.1 ssl.8
CFLAGS+= -DMONOLITH -I${.CURDIR}
@@ -23,6 +26,9 @@ SRCS= app_rand.c apps.c asn1pars.c ca.c ciphers.c crl.c crl2p7.c dgst.c \
req.c rsa.c s_cb.c s_client.c s_server.c s_socket.c s_time.c \
sess_id.c smime.c speed.c spkac.c verify.c version.c x509.c
-.PATH: ${OPENSSL_SRC}
-
.include <bsd.prog.mk>
+
+.SUFFIXES: .out .o .c .cc .cpp .cxx .C .m .y .l .s .S .pod
+
+.pod.1:
+ pod2man ${.IMPSRC} > ${.TARGET}