30 lines
675 B
Makefile
30 lines
675 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
PROG= openssl
|
||
|
|
||
|
LDADD= -lssl -lcrypto
|
||
|
NOMAN= noman
|
||
|
|
||
|
OPENSSL_SRC= ${.CURDIR}/../../../crypto/openssl/apps
|
||
|
|
||
|
CFLAGS+= -DMONOLITH -DNO_IDEA -I${.CURDIR}
|
||
|
|
||
|
.if !defined(RSA_NONCOMMERCIAL) || ${RSA_NONCOMMERCIAL} != YES
|
||
|
CFLAGS+= -DNO_RSA -DNO_SSL2
|
||
|
WITH_RSA= NO
|
||
|
.else
|
||
|
CFLAGS+= -DRSAref
|
||
|
LDADD+= -L/usr/local/lib -lrsaref
|
||
|
RSAREF= YES
|
||
|
.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>
|