2000-01-14 05:49:29 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2000-08-03 05:29:04 +00:00
|
|
|
OPENSSL_SRC= ${.CURDIR}/../../../crypto/openssl/apps
|
|
|
|
LCRYPTO_SRC= ${.CURDIR}/../../../crypto/openssl/crypto
|
|
|
|
|
|
|
|
.PATH: ${OPENSSL_SRC} ${OPENSSL_SRC}/../doc/apps/
|
|
|
|
|
2000-01-14 05:49:29 +00:00
|
|
|
PROG= openssl
|
|
|
|
|
2000-01-16 02:20:03 +00:00
|
|
|
MAINTAINER= kris
|
|
|
|
|
2000-02-14 08:09:52 +00:00
|
|
|
LDADD= -lssl -lcrypto
|
2000-08-03 05:29:04 +00:00
|
|
|
MLINKS= openssl.1 ssl.8
|
2000-01-14 05:49:29 +00:00
|
|
|
|
2000-06-24 06:50:58 +00:00
|
|
|
CFLAGS+= -DMONOLITH -I${.CURDIR}
|
2000-01-14 05:49:29 +00:00
|
|
|
|
2000-02-25 14:15:31 +00:00
|
|
|
WITH_RSA?= YES
|
|
|
|
.if ${WITH_RSA} == NO
|
|
|
|
CFLAGS+= -DNO_RSA -DNO_SSL2
|
2000-02-24 09:52:37 +00:00
|
|
|
.endif
|
2000-01-14 05:49:29 +00:00
|
|
|
|
2000-11-13 02:21:38 +00:00
|
|
|
SRCS= app_rand.c apps.c asn1pars.c ca.c ciphers.c crl.c crl2p7.c \
|
|
|
|
dgst.c dh.c dhparam.c dsa.c dsaparam.c enc.c errstr.c gendh.c \
|
|
|
|
gendsa.c genrsa.c nseq.c openssl.c passwd.c pkcs12.c pkcs7.c \
|
|
|
|
pkcs8.c rand.c req.c rsa.c rsautl.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.o
|
2000-01-14 05:49:29 +00:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|
2000-08-03 05:29:04 +00:00
|
|
|
|
|
|
|
.SUFFIXES: .out .o .c .cc .cpp .cxx .C .m .y .l .s .S .pod
|
|
|
|
|
|
|
|
.pod.1:
|
|
|
|
pod2man ${.IMPSRC} > ${.TARGET}
|