diff options
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r-- | src/lib/libssl/Makefile | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 52ad91dbc8..ad4c18cdbd 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile | |||
@@ -1,5 +1,5 @@ | |||
1 | # Build wrapper for OpenSSL | 1 | # Build wrapper for OpenSSL |
2 | # $OpenBSD: Makefile,v 1.8 2002/06/01 01:35:36 deraadt Exp $ | 2 | # $OpenBSD: Makefile,v 1.9 2002/06/07 03:45:32 beck Exp $ |
3 | 3 | ||
4 | # Our lndir is hacked; specify a full path to avoid potential conflicts | 4 | # Our lndir is hacked; specify a full path to avoid potential conflicts |
5 | # with the one installed with X11. | 5 | # with the one installed with X11. |
@@ -15,6 +15,7 @@ SSLCONF= --openssldir="${OPENSSLDIR}" OpenBSD-${MACHINE_ARCH} | |||
15 | MUNGEDFILES= \ | 15 | MUNGEDFILES= \ |
16 | ${.OBJDIR}/${SSL_SRC}/crypto/opensslconf.h \ | 16 | ${.OBJDIR}/${SSL_SRC}/crypto/opensslconf.h \ |
17 | ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h \ | 17 | ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h \ |
18 | ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_mac.h \ | ||
18 | ${.OBJDIR}/${SSL_SRC}/Makefile.ssl \ | 19 | ${.OBJDIR}/${SSL_SRC}/Makefile.ssl \ |
19 | ${.OBJDIR}/${SSL_SRC}/Makefile \ | 20 | ${.OBJDIR}/${SSL_SRC}/Makefile \ |
20 | ${.OBJDIR}/${SSL_SRC}/apps/der_chop \ | 21 | ${.OBJDIR}/${SSL_SRC}/apps/der_chop \ |
@@ -924,19 +925,17 @@ includes: prereq | |||
924 | @cd ${.OBJDIR}/crypto && ${MAKE} includes | 925 | @cd ${.OBJDIR}/crypto && ${MAKE} includes |
925 | @cd ${.OBJDIR}/ssl && ${MAKE} includes | 926 | @cd ${.OBJDIR}/ssl && ${MAKE} includes |
926 | 927 | ||
927 | prereq: ${.OBJDIR}/${SSL_SRC}/Makefile.ssl ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h | 928 | prereq: ${.OBJDIR}/${SSL_SRC}/Makefile.ssl ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_mac.h |
928 | 929 | ||
929 | install: maninstall | 930 | install: maninstall |
930 | @cd ${.OBJDIR}/crypto && ${MAKE} install | 931 | @cd ${.OBJDIR}/crypto && ${MAKE} install |
931 | @cd ${.OBJDIR}/ssl && ${MAKE} install | 932 | @cd ${.OBJDIR}/ssl && ${MAKE} installq |
932 | 933 | ||
933 | ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h: ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_mac.h | 934 | ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h: ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_mac.h |
934 | /usr/bin/perl ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.pl ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_mac.h ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h | 935 | /usr/bin/perl ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.pl ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_mac.h ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h |
935 | # Stupid ssl 0.9.6 fucks this up completely, won't even build if you | 936 | |
936 | # try to regenerate obj_dat.h - even with a stock distrib. | 937 | ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_mac.h: ${.OBJDIR}/${SSL_SRC}/crypto/objects/objects.h |
937 | #${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h: ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h.src | 938 | /usr/bin/perl ${.OBJDIR}/${SSL_SRC}/crypto/objects/objects.pl ${.OBJDIR}/${SSL_SRC}/crypto/objects/objects.txt ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_mac.num ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_mac.h |
938 | # @cp ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h.src \ | ||
939 | # ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h | ||
940 | 939 | ||
941 | ${.OBJDIR}/${SSL_SRC}/Makefile.ssl : ${.OBJDIR}/${SSL_SRC}/Makefile.org | 940 | ${.OBJDIR}/${SSL_SRC}/Makefile.ssl : ${.OBJDIR}/${SSL_SRC}/Makefile.org |
942 | @cd ${.OBJDIR}/${SSL_SRC} && /usr/bin/perl Configure ${SSLCONF} | 941 | @cd ${.OBJDIR}/${SSL_SRC} && /usr/bin/perl Configure ${SSLCONF} |