summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/usr.sbin/openssl/Makefile10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile
index 2a2df8f2e6..da72cbeeab 100644
--- a/src/usr.sbin/openssl/Makefile
+++ b/src/usr.sbin/openssl/Makefile
@@ -1,18 +1,12 @@
1# $OpenBSD: Makefile,v 1.25 2014/04/17 22:44:34 matthew Exp $ 1# $OpenBSD: Makefile,v 1.26 2014/04/18 14:41:54 deraadt Exp $
2 2
3PROG= openssl 3PROG= openssl
4LDADD= -lssl -lcrypto 4LDADD= -lssl -lcrypto
5MAN1= openssl.1 5MAN1= openssl.1
6 6
7SSLEAYDIST= lib/libssl/src
8
9SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps
10SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST}
11
12CFLAGS+= -Wall 7CFLAGS+= -Wall
13CFLAGS+= -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 8CFLAGS+= -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5
14CFLAGS+= -DOPENSSL_NO_SSL2 9CFLAGS+= -DOPENSSL_NO_SSL2
15CFLAGS+= -I${SSLEAY_SRC_TOP}
16 10
17SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ 11SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \
18 pkcs7.c crl2p7.c crl.c ca.c \ 12 pkcs7.c crl2p7.c crl.c ca.c \
@@ -23,6 +17,6 @@ SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \
23 spkac.c smime.c cms.c rand.c engine.c ocsp.c prime.c ts.c \ 17 spkac.c smime.c cms.c rand.c engine.c ocsp.c prime.c ts.c \
24 openssl.c s_cb.c dhparam.c 18 openssl.c s_cb.c dhparam.c
25 19
26.PATH: ${SSLEAY_SRC} 20.PATH: ${.CURDIR}/../../lib/libssl/src/apps
27 21
28.include <bsd.prog.mk> 22.include <bsd.prog.mk>