From ff35a38e498354e38e28bc246a1341a8fe2fbf91 Mon Sep 17 00:00:00 2001 From: ru Date: Thu, 11 Apr 2002 14:49:32 +0000 Subject: I now don't seem to be able to reproduce the -DNOCLEAN buildworld breakage with ioctl.c. The .depend file should track dependencies just fine, and the worst we can have is to miss new ioctls. But I still think it's a good idea to have -DNOCLEAN build produce the same ioctl.c as it would without -DNOCLEAN. Prodded for a long time by: bde --- Makefile.inc1 | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile.inc1') diff --git a/Makefile.inc1 b/Makefile.inc1 index 0ee0922..38e2c97 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -246,6 +246,10 @@ buildworld: @echo "--------------------------------------------------------------" .if !defined(NOCLEAN) rm -rf ${WORLDTMP} +.else + # XXX - These two can depend on any header file. + rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c + rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c .endif .for _dir in ${USRDIRS} mkdir -p ${WORLDTMP}/${_dir} -- cgit v1.1