From 9f847f13c70ea41e45a94abebc20a8fa14d8edb8 Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 22 Jan 2001 23:10:01 +0000 Subject: Use 'make clean' instead of 'config -r', and only if the 'depend' step has been skipped. We went to a lot of trouble to make the 'blow away' stage unneeded, and it has not been needed for quite some time. --- Makefile.inc1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile.inc1') diff --git a/Makefile.inc1 b/Makefile.inc1 index ff9ef12..4fce5ed 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -371,10 +371,6 @@ KRNLSRCDIR= ${.CURDIR}/sys KRNLCONFDIR= ${KRNLSRCDIR}/${MACHINE}/conf KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR} -.if !defined(NOCLEAN) -CONFIGARGS+= -r -.endif - BUILDKERNELS= INSTALLKERNEL= .for _kernel in ${KERNCONF} @@ -408,6 +404,10 @@ buildkernel: PATH=${TMPPATH} \ config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} ${_kernel} .endif +.if !defined(NOCLEAN) && defined(NO_KERNELDEPEND) + cd ${KRNLOBJDIR}/${_kernel}; \ + ${KMAKEENV} MACHINE=${MACHINE} ${MAKE} KERNEL=${INSTKERNNAME} clean +.endif cd ${KRNLOBJDIR}/${_kernel}; \ MAKESRCPATH=${KRNLSRCDIR}/dev/aic7xxx/aicasm \ ${MAKE} -f ${KRNLSRCDIR}/dev/aic7xxx/aicasm/Makefile -- cgit v1.1