Module Name:    src
Committed By:   mrg
Date:           Thu May 31 09:08:26 UTC 2018

Modified Files:
        src/external/bsd/acpica/bin/iasl: Makefile
        src/external/bsd/libpcap/lib: Makefile
        src/external/bsd/unbound/sbin: Makefile.inc
        src/external/gpl2/dtc/usr.bin/dtc: Makefile
        src/tests/usr.bin/nbperf: Makefile

Log Message:
make 'clean' and/or 'cleandir' actually clean all the things.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/external/bsd/acpica/bin/iasl/Makefile
cvs rdiff -u -r1.15 -r1.16 src/external/bsd/libpcap/lib/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/unbound/sbin/Makefile.inc
cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/dtc/usr.bin/dtc/Makefile
cvs rdiff -u -r1.1 -r1.2 src/tests/usr.bin/nbperf/Makefile

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

Modified files:

Index: src/external/bsd/acpica/bin/iasl/Makefile
diff -u src/external/bsd/acpica/bin/iasl/Makefile:1.18 src/external/bsd/acpica/bin/iasl/Makefile:1.19
--- src/external/bsd/acpica/bin/iasl/Makefile:1.18	Sat Apr  7 15:49:50 2018
+++ src/external/bsd/acpica/bin/iasl/Makefile	Thu May 31 09:08:25 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2018/04/07 15:49:50 christos Exp $
+# $NetBSD: Makefile,v 1.19 2018/05/31 09:08:25 mrg Exp $
 
 .if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64")
 PROG=	iasl
@@ -325,6 +325,8 @@ CLEANFILES+=	aslcompilerparse.y  aslcomp
 		prparserparse.h				\
 		prparserlex.l prparserlex.c		\
 		prparser.y.h prparserparse.output	\
+							\
+		y.output y.tab.h
 
 .include <bsd.prog.mk>
 

Index: src/external/bsd/libpcap/lib/Makefile
diff -u src/external/bsd/libpcap/lib/Makefile:1.15 src/external/bsd/libpcap/lib/Makefile:1.16
--- src/external/bsd/libpcap/lib/Makefile:1.15	Tue Jan 24 23:26:58 2017
+++ src/external/bsd/libpcap/lib/Makefile	Thu May 31 09:08:25 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2017/01/24 23:26:58 christos Exp $	
+# $NetBSD: Makefile,v 1.16 2018/05/31 09:08:25 mrg Exp $	
 
 USE_SHLIBDIR=yes
 .include <bsd.own.mk>
@@ -153,7 +153,7 @@ scanner.d scanner.o: tokdefs.h
 tokdefs.h: grammar.h
 	cp $? $@
 
-CLEANFILES+=	tokdefs.h
+CLEANFILES+=	tokdefs.h scanner.h
 COPTS.bpf_image.c = -Wno-format-nonliteral
 
 .include <bsd.lib.mk>

Index: src/external/bsd/unbound/sbin/Makefile.inc
diff -u src/external/bsd/unbound/sbin/Makefile.inc:1.4 src/external/bsd/unbound/sbin/Makefile.inc:1.5
--- src/external/bsd/unbound/sbin/Makefile.inc:1.4	Tue Mar 13 03:07:51 2018
+++ src/external/bsd/unbound/sbin/Makefile.inc	Thu May 31 09:08:25 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.4 2018/03/13 03:07:51 mrg Exp $
+# $NetBSD: Makefile.inc,v 1.5 2018/05/31 09:08:25 mrg Exp $
 
 .include "../Makefile.inc"
 
@@ -28,6 +28,6 @@ ${PROG}.8: ${PROG}.8.in __subst
 
 .if defined(SCRIPTS)
 .PATH: ${UNBOUND}/smallapp
-CLEANFILES+=${SCRIPTS}.sh
+CLEANFILES+=${SCRIPTS}.sh ${SCRIPTS}
 ${SCRIPTS}.sh: ${SCRIPTS}.sh.in __subst
 .endif

Index: src/external/gpl2/dtc/usr.bin/dtc/Makefile
diff -u src/external/gpl2/dtc/usr.bin/dtc/Makefile:1.2 src/external/gpl2/dtc/usr.bin/dtc/Makefile:1.3
--- src/external/gpl2/dtc/usr.bin/dtc/Makefile:1.2	Thu Jun  8 18:57:21 2017
+++ src/external/gpl2/dtc/usr.bin/dtc/Makefile	Thu May 31 09:08:25 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.2 2017/06/08 18:57:21 skrll Exp $
+#	$NetBSD: Makefile,v 1.3 2018/05/31 09:08:25 mrg Exp $
 
 NOMAN=	# defined
 
@@ -15,6 +15,7 @@ CPPFLAGS+=	-I${LIBFDTDIST}
 
 SRCS+=	${DTC_SRCS} dtc-lexer.l dtc-parser.y
 YFLAGS+= -d -L
+CLEANFILES+= dtc-parser.h
 
 .PATH:	${DTCDIST}
 

Index: src/tests/usr.bin/nbperf/Makefile
diff -u src/tests/usr.bin/nbperf/Makefile:1.1 src/tests/usr.bin/nbperf/Makefile:1.2
--- src/tests/usr.bin/nbperf/Makefile:1.1	Sun Jul 22 20:38:20 2012
+++ src/tests/usr.bin/nbperf/Makefile	Thu May 31 09:08:26 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2012/07/22 20:38:20 joerg Exp $
+# $NetBSD: Makefile,v 1.2 2018/05/31 09:08:26 mrg Exp $
 
 NOMAN=		# defined
 
@@ -10,6 +10,7 @@ TESTS_SH=	t_nbperf
 
 SCRIPTSDIR=	${TESTSDIR}
 SCRIPTS+=	h_nbperf
+CLEANFILES+=	h_nbperf
 
 FILESDIR=		${TESTSDIR}
 FILES=			hash_driver.c

Reply via email to