Mon Jul 20 20:19:49 2009 UTC ()
reference the regular Makefile directly instead of copying it.


(christos)
diff -r1.1 -r1.2 src/compat/crypto/external/bsd/openssl/lib/Makefile

cvs diff -r1.1 -r1.2 src/compat/crypto/external/bsd/openssl/lib/Attic/Makefile (expand / switch to unified diff)

--- src/compat/crypto/external/bsd/openssl/lib/Attic/Makefile 2009/07/19 23:36:49 1.1
+++ src/compat/crypto/external/bsd/openssl/lib/Attic/Makefile 2009/07/20 20:19:48 1.2
@@ -1,26 +1,5 @@ @@ -1,26 +1,5 @@
1# $NetBSD: Makefile,v 1.1 2009/07/19 23:36:49 christos Exp $ 1# $NetBSD: Makefile,v 1.2 2009/07/20 20:19:48 christos Exp $
2 2
3.include "bsd.own.mk" 3.include "bsd.own.mk"
4 4
5.if (${MKCRYPTO} != "no") 5.include "${NETBSDSRCDIR}/crypto/external/bsd/openssl/lib/Makefile"
6 
7# OpenSSL libraries. 
8SUBDIR= libcrypto libdes 
9 
10.if (${MKCRYPTO_IDEA} != "no") 
11SUBDIR+= libcrypto_idea 
12.endif # MKCRYPTO_IDEA != no 
13 
14.if (${MKCRYPTO_MDC2} != "no") 
15SUBDIR+= libcrypto_mdc2 
16.endif # MKCRYPTO_MDC2 != no 
17 
18.if (${MKCRYPTO_RC5} != "no") 
19SUBDIR+= libcrypto_rc5 
20.endif # MKCRYPTO_RC5 != no 
21 
22SUBDIR+= libssl # depends on libcrypto 
23 
24.endif # MKCRYPTO != no 
25 
26.include <bsd.subdir.mk>