diff options
author | kris <kris@FreeBSD.org> | 2000-08-03 05:29:04 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-08-03 05:29:04 +0000 |
commit | 509680f8f340fabcbddfd42d820a8a1e83d5affd (patch) | |
tree | ea9aa6c8d84357daa056b5dd6aa9bfce3bf2b6ea /secure | |
parent | 8d241d25cf32c3cdaeca37f1b19e017301ee7798 (diff) | |
download | FreeBSD-src-509680f8f340fabcbddfd42d820a8a1e83d5affd.zip FreeBSD-src-509680f8f340fabcbddfd42d820a8a1e83d5affd.tar.gz |
Install the openssl(1) manpage with an MLINK from ssl(8) to at least put
something in the location where OpenSSH likes to point.
Diffstat (limited to 'secure')
-rw-r--r-- | secure/usr.bin/openssl/Makefile | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/secure/usr.bin/openssl/Makefile b/secure/usr.bin/openssl/Makefile index 1cde16b..4aea4f0 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} |