mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 14:56:13 +01:00
d465a4b0b3
This leverages CONFS to do the install Approved by: re (pkgbase, blanket), bapt (mentor) Differential Revision: https://reviews.freebsd.org/D17245
28 lines
725 B
Makefile
28 lines
725 B
Makefile
# $FreeBSD$
|
|
|
|
CONFS= openssl.cnf
|
|
CONFSDIR= /etc/ssl
|
|
PROG= openssl
|
|
|
|
LIBADD= ssl crypto
|
|
|
|
.if exists(Makefile.man)
|
|
.include "Makefile.man"
|
|
.endif
|
|
.include "../../lib/libcrypto/Makefile.inc"
|
|
|
|
CFLAGS+= -DMONOLITH
|
|
|
|
SRCS+= app_rand.c apps.c asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c \
|
|
dgst.c dh.c dhparam.c dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c \
|
|
errstr.c gendh.c gendsa.c genpkey.c genrsa.c nseq.c ocsp.c openssl.c \
|
|
passwd.c pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c \
|
|
prime.c rand.c req.c rsa.c rsautl.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 srp.c ts.c \
|
|
verify.c version.c x509.c
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${LCRYPTO_SRC}/apps \
|
|
${.CURDIR}/man
|