Subject: Speeding up package make
To: None <tech-pkg@netbsd.org>
From: David Brownlee <abs@netbsd.org>
List: tech-pkg
Date: 02/10/2000 18:53:07
        One thing that does confuse me - why do we have:

.if !target(fetch)
fetch:  
        @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-fetch
.endif

        and not just

.if !target(fetch)
fetch:  real-fetch

.endif

	We could save an extra (expensive) make invocation per fetch
	in the latter case.

        Thanks.

		David/absolute