Sat Jun 17 15:45:51 2023 UTC ()
Split the SUBDIR variable into a separate Makefile so it can be used
by /usr/src/lib/Makefile


(christos)
diff -r1.8 -r1.9 src/crypto/external/bsd/openssl/lib/Makefile
diff -r0 -r1.1 src/crypto/external/bsd/openssl/lib/Makefile.subdir

cvs diff -r1.8 -r1.9 src/crypto/external/bsd/openssl/lib/Makefile (expand / switch to unified diff)

--- src/crypto/external/bsd/openssl/lib/Makefile 2023/05/26 22:27:50 1.8
+++ src/crypto/external/bsd/openssl/lib/Makefile 2023/06/17 15:45:51 1.9
@@ -1,11 +1,7 @@ @@ -1,11 +1,7 @@
1# $NetBSD: Makefile,v 1.8 2023/05/26 22:27:50 riastradh Exp $ 1# $NetBSD: Makefile,v 1.9 2023/06/17 15:45:51 christos Exp $
2 2
3.include "bsd.own.mk" 3.include "bsd.own.mk"
4 4
5# OpenSSL libraries. 5.include "Makefile.subdir"
6SUBDIR= libapps libcommon libcrypto libcryptotest libdes 
7 
8SUBDIR+= .WAIT libssl liblegacy # depends on libcrypto, libcommon 
9SUBDIR+= engines 
10 6
11.include <bsd.subdir.mk> 7.include <bsd.subdir.mk>

File Added: src/crypto/external/bsd/openssl/lib/Makefile.subdir
#	$NetBSD: Makefile.subdir,v 1.1 2023/06/17 15:45:51 christos Exp $

# OpenSSL libraries.
SUBDIR+= ${OSSL}libapps ${OSSL}libcommon ${OSSL}libcrypto
SUBDIR+= ${OSSL}libcryptotest ${OSSL}libdes

SUBDIR+= .WAIT	${OSSL}libssl ${OSSL}liblegacy	# depends on libcrypto, libcommon
SUBDIR+= ${OSSL}engines