1# $FreeBSD$ 2 3PROG= openssl 4 5MAINTAINER= kris 6 7LDADD= -lssl -lcrypto 8NOMAN= noman 9 10OPENSSL_SRC= ${.CURDIR}/../../../crypto/openssl/apps 11LCRYPTO_SRC= ${.CURDIR}/../../../crypto/openssl/crypto 12 13CFLAGS+= -DMONOLITH -I${.CURDIR} 14 15WITH_RSA?= YES 16.if ${WITH_RSA} == NO 17CFLAGS+= -DNO_RSA -DNO_SSL2 18.endif 19 20SRCS= app_rand.c apps.c asn1pars.c ca.c ciphers.c crl.c crl2p7.c dgst.c \ 21 dh.c dhparam.c dsa.c dsaparam.c enc.c errstr.c gendh.c gendsa.c \ 22 genrsa.c nseq.c openssl.c passwd.c pkcs12.c pkcs7.c pkcs8.c rand.c \ 23 req.c rsa.c s_cb.c s_client.c s_server.c s_socket.c s_time.c \ 24 sess_id.c smime.c speed.c spkac.c verify.c version.c x509.c 25 26.PATH: ${OPENSSL_SRC} 27 28.include <bsd.prog.mk> 29