freebsd-skq/secure/usr.bin/openssl/Makefile
markm 2fe0472e39 MFI. This is a documentation-only, diffreducing patch, that if
invoked will cause breakage. US Users - DO NOT try to turn on
IDEA - the sources are not included.
2000-06-24 06:50:58 +00:00

29 lines
682 B
Makefile

# $FreeBSD$
PROG= openssl
MAINTAINER= kris
LDADD= -lssl -lcrypto
NOMAN= noman
OPENSSL_SRC= ${.CURDIR}/../../../crypto/openssl/apps
LCRYPTO_SRC= ${.CURDIR}/../../../crypto/openssl/crypto
CFLAGS+= -DMONOLITH -I${.CURDIR}
WITH_RSA?= YES
.if ${WITH_RSA} == NO
CFLAGS+= -DNO_RSA -DNO_SSL2
.endif
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 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>