freebsd-skq/secure/usr.bin/openssl/Makefile
peter 3e7de8aad5 Merge from internat.freebsd.org; deal with -DRSAref the same way as
libcrypto - not that it means much on the US code tree.
2000-02-25 14:15:31 +00:00

36 lines
825 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 -DNO_IDEA -I${.CURDIR}
WITH_RSA?= YES
.if ${WITH_RSA} == NO
CFLAGS+= -DNO_RSA -DNO_SSL2
.else
.if !defined(USA_RESIDENT) || ${USA_RESIDENT} != NO
RSAREF= YES
.endif
.endif
.if (defined(RSAREF) && ${RSAREF} == YES) || !exists(${LCRYPTO_SRC}/rsa/rsa_eay.c)
CFLAGS+= -DRSAref
.endif
SRCS= apps.c asn1pars.c ca.c ciphers.c crl.c crl2p7.c dgst.c dh.c \
dsa.c dsaparam.c enc.c errstr.c gendh.c gendsa.c genrsa.c \
nseq.c openssl.c pkcs12.c pkcs7.c pkcs8.c req.c rsa.c s_cb.c \
s_client.c s_server.c s_socket.c s_time.c sess_id.c speed.c \
verify.c version.c x509.c
.PATH: ${OPENSSL_SRC}
.include <bsd.prog.mk>