diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2016-09-04 17:59:27 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2016-09-04 17:59:27 +0000 |
commit | 9cf4b84f15237784f80c7cb3ba74dc57397e52b9 (patch) | |
tree | a5cd3f999f6501bf637e55df6c8e84d7f0c7cf48 /lib/libcrypto/Makefile | |
parent | 1ddbe9a99c4afcf9ce1c9ad6f3952beb6a040f24 (diff) |
Remove cms.
Diffstat (limited to 'lib/libcrypto/Makefile')
-rw-r--r-- | lib/libcrypto/Makefile | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/lib/libcrypto/Makefile b/lib/libcrypto/Makefile index 4c5392f8da1..411acf2f0b1 100644 --- a/lib/libcrypto/Makefile +++ b/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2016/09/02 17:40:28 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 2016/09/04 17:59:26 jsing Exp $ LIB= crypto @@ -85,11 +85,6 @@ SRCS+= chacha.c # cmac/ SRCS+= cmac.c cm_ameth.c cm_pmeth.c -# cms/ -#SRCS+= cms_lib.c cms_asn1.c cms_att.c cms_io.c cms_smime.c cms_err.c -#SRCS+= cms_sd.c cms_dd.c cms_cd.c cms_env.c cms_enc.c cms_ess.c -#SRCS+= cms_pwri.c - # comp/ SRCS+= comp_lib.c comp_err.c c_rle.c c_zlib.c @@ -270,7 +265,6 @@ SRCS+= pcy_cache.c pcy_node.c pcy_data.c pcy_map.c pcy_tree.c pcy_lib.c ${LCRYPTO_SRC}/cast \ ${LCRYPTO_SRC}/chacha \ ${LCRYPTO_SRC}/cmac \ - ${LCRYPTO_SRC}/cms \ ${LCRYPTO_SRC}/comp \ ${LCRYPTO_SRC}/conf \ ${LCRYPTO_SRC}/des \ @@ -326,7 +320,6 @@ HDRS=\ ${LCRYPTO_SRC}/cast/cast.h \ ${LCRYPTO_SRC}/chacha/chacha.h \ ${LCRYPTO_SRC}/cmac/cmac.h \ - ${LCRYPTO_SRC}/cms/cms.h \ ${LCRYPTO_SRC}/comp/comp.h \ ${LCRYPTO_SRC}/conf/conf.h \ ${LCRYPTO_SRC}/conf/conf_api.h \ @@ -438,12 +431,12 @@ distribution: ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 444 \ ${.CURDIR}/x509v3.cnf ${DESTDIR}/etc/ssl/x509v3.cnf -beforeinstall: +${PC_FILES}: opensslv.h /bin/sh ${.CURDIR}/generate_pkgconfig.sh -c ${.CURDIR} -o ${.OBJDIR} -.for p in ${PC_FILES} + +beforeinstall: ${PC_FILES} ${INSTALL} ${INSTALL_COPY} -o root -g ${SHAREGRP} \ - -m ${SHAREMODE} ${.OBJDIR}/$p ${DESTDIR}/usr/lib/pkgconfig/ -.endfor + -m ${SHAREMODE} ${.OBJDIR}/${PC_FILES} ${DESTDIR}/usr/lib/pkgconfig/ .include <bsd.prog.mk> .include <bsd.subdir.mk> |