summaryrefslogtreecommitdiffstats
path: root/secure/lib/libssl
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2000-01-14 05:49:29 +0000
committerkris <kris@FreeBSD.org>2000-01-14 05:49:29 +0000
commitfdd71b0f8f83c044f38671eb9d749b33ae66e582 (patch)
tree1420504951deed5baf28547a6e49d72ad1fa6255 /secure/lib/libssl
parent728ac765652f2ea1ea6897cc052ffdd6ed23b476 (diff)
downloadFreeBSD-src-fdd71b0f8f83c044f38671eb9d749b33ae66e582.zip
FreeBSD-src-fdd71b0f8f83c044f38671eb9d749b33ae66e582.tar.gz
Build infrastructure for OpenSSL
Diffstat (limited to 'secure/lib/libssl')
-rw-r--r--secure/lib/libssl/Makefile62
1 files changed, 62 insertions, 0 deletions
diff --git a/secure/lib/libssl/Makefile b/secure/lib/libssl/Makefile
new file mode 100644
index 0000000..f5ca8be
--- /dev/null
+++ b/secure/lib/libssl/Makefile
@@ -0,0 +1,62 @@
+# $FreeBSD$
+
+.include "../libcrypto/Makefile.inc"
+
+LIB= ssl
+SHLIB_MAJOR= 1
+
+LOPENSSL_SRC= ${.CURDIR}/../../../crypto/openssl/ssl
+
+SRCS= bio_ssl.c s23_clnt.c s23_lib.c s23_meth.c s23_pkt.c s23_srvr.c \
+ s2_clnt.c s2_enc.c s2_lib.c s2_meth.c s2_pkt.c s2_srvr.c s3_both.c \
+ s3_clnt.c s3_enc.c s3_lib.c s3_meth.c s3_pkt.c s3_srvr.c ssl_algs.c \
+ ssl_asn1.c ssl_cert.c ssl_ciph.c ssl_err.c ssl_err2.c ssl_lib.c \
+ ssl_rsa.c ssl_sess.c ssl_stat.c ssl_txt.c t1_clnt.c t1_enc.c \
+ t1_lib.c t1_meth.c t1_srvr.c
+
+HDRS= ssl.h ssl2.h ssl23.h ssl3.h ssl_locl.h tls1.h
+
+CRYPTOHDRS= asn1/asn1.h asn1/asn1_mac.h bio/bio.h bf/blowfish.h bn/bn.h \
+ buffer/buffer.h cast/cast.h comp/comp.h conf/conf.h crypto.h \
+ des/des.h dh/dh.h dsa/dsa.h ../e_os.h ../e_os2.h ebcdic.h \
+ err/err.h evp/evp.h hmac/hmac.h lhash/lhash.h md2/md2.h \
+ md5/md5.h mdc2/mdc2.h objects/objects.h opensslv.h pem/pem.h \
+ pem/pem2.h pkcs12/pkcs12.h pkcs7/pkcs7.h rand/rand.h rc2/rc2.h \
+ rc4/rc4.h rc5/rc5.h ripemd/ripemd.h stack/safestack.h \
+ sha/sha.h stack/stack.h tmdiff.h txt_db/txt_db.h x509/x509.h \
+ x509/x509_vfy.h x509v3/x509v3.h
+
+.if defined(RSAREF) && ${RSAREF} == YES
+CRYPTOHDRS+= rsa/rsa.h ../rsaref/rsaref.h
+.endif
+
+beforedepend: headers ${.OBJDIR}/openssl/opensslconf.h
+
+DPADD+= ${.OBJDIR}/openssl/opensslconf.h
+
+CLEANDIRS+= ${.OBJDIR}/openssl
+
+${.OBJDIR}/openssl/opensslconf.h: ../libcrypto/opensslconf-${MACHINE_ARCH}.h
+ @test -d ${.OBJDIR}/openssl || mkdir -p ${.OBJDIR}/openssl; \
+ cp ${.OODATE} ${.TARGET}
+
+headers:
+ @test -d ${.OBJDIR}/openssl || mkdir -p ${.OBJDIR}/openssl; \
+ for i in ${HDRS}; do \
+ ${INSTALL} ${COPY} -m 444 ${LOPENSSL_SRC}/$$i \
+ ${.OBJDIR}/openssl; \
+ done; \
+ for i in ${CRYPTOHDRS}; do \
+ ${INSTALL} ${COPY} -m 444 ${LCRYPTO_SRC}/$$i \
+ ${.OBJDIR}/openssl; \
+ done
+
+beforeinstall:
+ for i in ${HDRS}; do \
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ${LOPENSSL_SRC}/$$i ${DESTDIR}/usr/include/openssl; \
+ done
+
+.PATH: ${LOPENSSL_SRC}
+
+.include <bsd.lib.mk>
OpenPOWER on IntegriCloud