Module Name:    src
Committed By:   riastradh
Date:           Tue Mar  3 04:20:50 UTC 2020

Modified Files:
        src/lib: Makefile

Log Message:
Remove unfinished hack I accidentally committed in 2017.

This caused make to unconditionally take ages running useless
submakes in every subdirectory.  Accidentally committed during the
MKCRYPTO option removal when I was presumably experimenting with
automating library dependency generation in lib.

Should shave a few seconds at least off every build!


To generate a diff of this commit:
cvs rdiff -u -r1.275 -r1.276 src/lib/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/Makefile
diff -u src/lib/Makefile:1.275 src/lib/Makefile:1.276
--- src/lib/Makefile:1.275	Tue Mar  3 00:37:05 2020
+++ src/lib/Makefile	Tue Mar  3 04:20:50 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.275 2020/03/03 00:37:05 christos Exp $
+#	$NetBSD: Makefile,v 1.276 2020/03/03 04:20:50 riastradh Exp $
 #	from: @(#)Makefile	5.25.1.1 (Berkeley) 5/7/91
 
 .include <bsd.own.mk>
@@ -298,21 +298,5 @@ SUBDIR+=	lua
 # Needed by rump and rescue which are outside the smbfs tree
 SUBDIR+=	../external/bsd/smbfs/lib
 
-.for S in ${SUBDIR}
-.if ${S} != ".WAIT"
-SUBLIB_${S}!=	cd ${S} && ${MAKE} -V LIB
-SUBDEP_${S}!=	cd ${S} && ${MAKE} -V LIBDPLIBS
-.endif
-.endfor
-
-showdeps:
-.for S in ${SUBDIR}
-.if ${S} != ".WAIT"
-.for DL DD in ${SUBDEP_${S}}
-	@echo ${S} ${SUBLIB_${S}} ${DL} ${DD:C,^${.CURDIR}/,,}
-.endfor
-.endif
-.endfor
-
 .include <bsd.buildinstall.mk>
 .include <bsd.subdir.mk>

Reply via email to