diff options
author | markm <markm@FreeBSD.org> | 2002-05-14 19:39:00 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-05-14 19:39:00 +0000 |
commit | 8082500a64c17f654e51653892ea3c77d572d460 (patch) | |
tree | 14a11f71504dcf5d42b996d6303e5f6e951165ba /secure | |
parent | be8339f00b14bc22eb36be09c95a208a931ce889 (diff) | |
download | FreeBSD-src-8082500a64c17f654e51653892ea3c77d572d460.zip FreeBSD-src-8082500a64c17f654e51653892ea3c77d572d460.tar.gz |
Build using pregenerated manpages; don't use perl to translate .pod's.
The translated .pod's have already been committed.
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/libcrypto/Makefile | 5 | ||||
-rw-r--r-- | secure/usr.bin/openssl/Makefile | 9 |
2 files changed, 2 insertions, 12 deletions
diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile index 9ad59f0..928c0fe 100644 --- a/secure/lib/libcrypto/Makefile +++ b/secure/lib/libcrypto/Makefile @@ -14,7 +14,7 @@ ${LCRYPTO_SRC}/rc4 ${LCRYPTO_SRC}/rc5 ${LCRYPTO_SRC}/ripemd \ ${LCRYPTO_SRC}/rsa ${LCRYPTO_SRC}/../rsaref ${LCRYPTO_SRC}/sha \ ${LCRYPTO_SRC}/stack ${LCRYPTO_SRC}/txt_db ${LCRYPTO_SRC}/x509 \ - ${LCRYPTO_SRC}/x509v3 + ${LCRYPTO_SRC}/x509v3 ${.CURDIR}/man .if ${MACHINE_ARCH} == "i386" .PATH: ${.CURDIR}/i386 @@ -343,9 +343,6 @@ POD3+= ssl/SSL_CIPHER_get_name.pod \ .for pod in ${POD${section}} .for target in ${pod:T:S/.pod/.${section}/g} MAN+= ${target} -CLEANFILES+= ${target} -${target}: ${LCRYPTO_SRC}/../doc/${pod} - pod2man ${LCRYPTO_SRC}/../doc/${pod} > ${target} .endfor .endfor .endfor diff --git a/secure/usr.bin/openssl/Makefile b/secure/usr.bin/openssl/Makefile index 61479d0..ae55edd 100644 --- a/secure/usr.bin/openssl/Makefile +++ b/secure/usr.bin/openssl/Makefile @@ -3,7 +3,7 @@ OPENSSL_SRC= ${.CURDIR}/../../../crypto/openssl/apps LCRYPTO_SRC= ${.CURDIR}/../../../crypto/openssl/crypto -.PATH: ${OPENSSL_SRC} ${OPENSSL_SRC}/../doc/apps/ +.PATH: ${OPENSSL_SRC} ${.CURDIR}/../../lib/libcrypto/man PROG= openssl @@ -27,11 +27,4 @@ SRCS= app_rand.c apps.c asn1pars.c ca.c ciphers.c crl.c crl2p7.c \ s_server.c s_socket.c s_time.c sess_id.c smime.c speed.c \ spkac.c verify.c version.c x509.o -CLEANFILES= openssl.1 - .include <bsd.prog.mk> - -.SUFFIXES: .out .o .c .cc .cpp .cxx .C .m .y .l .s .S .pod - -.pod.1: - pod2man ${.IMPSRC} > ${.TARGET} |