aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin/openssl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'secure/usr.bin/openssl/Makefile')
-rw-r--r--secure/usr.bin/openssl/Makefile27
1 files changed, 17 insertions, 10 deletions
diff --git a/secure/usr.bin/openssl/Makefile b/secure/usr.bin/openssl/Makefile
index 5f3bf395a149..66b3df533579 100644
--- a/secure/usr.bin/openssl/Makefile
+++ b/secure/usr.bin/openssl/Makefile
@@ -1,5 +1,3 @@
-# $FreeBSD$
-
CONFS= openssl.cnf
CONFSDIR= /etc/ssl
PROG= openssl
@@ -12,16 +10,25 @@ LIBADD= ssl crypto
.endif
.include "../../lib/libcrypto/Makefile.inc"
-CFLAGS+= -I${LCRYPTO_SRC}/apps
+CFLAGS+= -I${LCRYPTO_SRC}/apps/include
CFLAGS+= -I${OBJTOP}/secure/lib/libcrypto
-SRCS= app_rand.c apps.c asn1pars.c bf_prefix.c ca.c ciphers.c cms.c crl.c
-SRCS+= crl2p7.c dgst.c dhparam.c dsa.c dsaparam.c ec.c ecparam.c enc.c
-SRCS+= engine.c errstr.c gendsa.c genpkey.c genrsa.c nseq.c ocsp.c
-SRCS+= openssl.c opt.c passwd.c pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c
-SRCS+= pkeyutl.c prime.c rand.c rehash.c req.c rsa.c rsautl.c s_cb.c
-SRCS+= s_client.c s_server.c s_socket.c s_time.c sess_id.c smime.c speed.c
-SRCS+= spkac.c srp.c storeutl.c ts.c verify.c version.c x509.c
+SRCS= asn1parse.c ca.c ciphers.c cmp.c cms.c crl.c crl2pkcs7.c dgst.c
+SRCS+= dhparam.c dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c errstr.c
+SRCS+= fipsinstall.c gendsa.c genpkey.c genrsa.c info.c kdf.c
+SRCS+= lib/cmp_mock_srv.c list.c lib/log.c mac.c nseq.c ocsp.c openssl.c
+SRCS+= passwd.c pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c prime.c
+SRCS+= progs.c rand.c rehash.c req.c rsa.c rsautl.c s_client.c s_server.c
+SRCS+= s_time.c sess_id.c skeyutl.c smime.c speed.c spkac.c srp.c storeutl.c
+SRCS+= ts.c verify.c version.c x509.c
+
+# libapps
+SRCS+= lib/apps.c lib/apps_ui.c lib/opt.c lib/fmt.c lib/s_cb.c lib/s_socket.c
+SRCS+= lib/app_rand.c
+SRCS+= lib/columns.c lib/app_params.c lib/names.c lib/app_provider.c
+SRCS+= lib/app_x509.c lib/http_server.c
+SRCS+= lib/engine.c lib/engine_loader.c lib/app_libctx.c lib/apps_opt_printf.c
+SRCS+= lib/tlssrp_depr.c
.include <bsd.prog.mk>