aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/usr.bin/binutils/libbfd/Makefile.i3862
-rw-r--r--kerberos5/libexec/kdigest/Makefile2
-rw-r--r--kerberos5/usr.bin/hxtool/Makefile2
-rw-r--r--kerberos5/usr.bin/kadmin/Makefile2
-rw-r--r--kerberos5/usr.bin/kcc/Makefile2
-rw-r--r--kerberos5/usr.sbin/iprop-log/Makefile2
-rw-r--r--kerberos5/usr.sbin/ktutil/Makefile2
-rw-r--r--lib/clang/include/Makefile2
-rw-r--r--lib/libc/tests/gen/posix_spawn/Makefile2
-rw-r--r--usr.bin/yacc/tests/Makefile2
-rw-r--r--usr.sbin/vigr/Makefile1
11 files changed, 20 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils/libbfd/Makefile.i386 b/gnu/usr.bin/binutils/libbfd/Makefile.i386
index e6d24a993a372..e41e30d4deab7 100644
--- a/gnu/usr.bin/binutils/libbfd/Makefile.i386
+++ b/gnu/usr.bin/binutils/libbfd/Makefile.i386
@@ -17,3 +17,5 @@ VECS= ${DEFAULT_VECTOR} \
peigen.c: peXXigen.c
sed -e s/XX/pe/g ${.ALLSRC} > ${.TARGET}
+
+CLEANFILES+= peigen.c
diff --git a/kerberos5/libexec/kdigest/Makefile b/kerberos5/libexec/kdigest/Makefile
index f9b42e56851e5..398443ce644b6 100644
--- a/kerberos5/libexec/kdigest/Makefile
+++ b/kerberos5/libexec/kdigest/Makefile
@@ -10,6 +10,8 @@ SRCS= kdigest.c \
kdigest-commands.c \
kdigest-commands.h
+CLEANFILES= kdigest-commands.h kdigest-commands.c
+
kdigest-commands.h: kdigest-commands.in
${SLC} ${.ALLSRC:M*.in}
diff --git a/kerberos5/usr.bin/hxtool/Makefile b/kerberos5/usr.bin/hxtool/Makefile
index 53612fd1274ff..4a7b102e64427 100644
--- a/kerberos5/usr.bin/hxtool/Makefile
+++ b/kerberos5/usr.bin/hxtool/Makefile
@@ -9,6 +9,8 @@ CFLAGS+= -I${KRB5DIR}/lib/hx509 \
LIBADD= hx509 roken asn1 crypto sl vers edit
SRCS= hxtool.c hxtool-commands.c hxtool-commands.h
+CLEANFILES= hxtool-commands.h hxtool-commands.c
+
hxtool-commands.h: hxtool-commands.in
${SLC} ${.ALLSRC:M*.in}
diff --git a/kerberos5/usr.bin/kadmin/Makefile b/kerberos5/usr.bin/kadmin/Makefile
index b3b84b9ab0ce7..c45d27365d0b3 100644
--- a/kerberos5/usr.bin/kadmin/Makefile
+++ b/kerberos5/usr.bin/kadmin/Makefile
@@ -31,6 +31,8 @@ DPADD= ${LDAPDPADD}
LDADD= ${LDAPLDADD}
LDFLAGS=${LDAPLDFLAGS}
+CLEANFILES= kadmin-commands.h kadmin-commands.c
+
.include <bsd.prog.mk>
kadmin-commands.h: ${KRB5DIR}/kadmin/kadmin-commands.in
diff --git a/kerberos5/usr.bin/kcc/Makefile b/kerberos5/usr.bin/kcc/Makefile
index cde73f5f7f9e6..e378ee36f9756 100644
--- a/kerberos5/usr.bin/kcc/Makefile
+++ b/kerberos5/usr.bin/kcc/Makefile
@@ -16,6 +16,8 @@ SRCS= kcc.c \
kswitch.c \
copy_cred_cache.c
+CLEANFILES= kcc-commands.h kcc-commands.c
+
kcc-commands.h: kcc-commands.in
${SLC} ${.ALLSRC:M*.in}
diff --git a/kerberos5/usr.sbin/iprop-log/Makefile b/kerberos5/usr.sbin/iprop-log/Makefile
index 23439198efb54..bdcd6b9432792 100644
--- a/kerberos5/usr.sbin/iprop-log/Makefile
+++ b/kerberos5/usr.sbin/iprop-log/Makefile
@@ -11,6 +11,8 @@ CFLAGS+= -I${KRB5DIR}/lib/kadm5 \
LIBADD= kadm5srv hdb krb5 roken edit sl vers
LDFLAGS=${LDAPLDFLAGS}
+CLEANFILES= iprop-commands.h iprop-commands.c
+
iprop-commands.h: iprop-commands.in
${SLC} ${.ALLSRC:M*.in}
diff --git a/kerberos5/usr.sbin/ktutil/Makefile b/kerberos5/usr.sbin/ktutil/Makefile
index 6ae92f68ca55c..c79d09e6d94d2 100644
--- a/kerberos5/usr.sbin/ktutil/Makefile
+++ b/kerberos5/usr.sbin/ktutil/Makefile
@@ -19,6 +19,8 @@ SRCS= add.c \
CFLAGS+=-I${KRB5DIR}/lib/roken -I${KRB5DIR}/lib/sl -I.
LIBADD= kadm5clnt krb5 roken crypto edit sl vers
+CLEANFILES= ktutil-commands.h ktutil-commands.c
+
.include <bsd.prog.mk>
ktutil-commands.h: ${KRB5DIR}/admin/ktutil-commands.in
diff --git a/lib/clang/include/Makefile b/lib/clang/include/Makefile
index d78b20d151f63..6f679bb13a91e 100644
--- a/lib/clang/include/Makefile
+++ b/lib/clang/include/Makefile
@@ -54,7 +54,7 @@ INCS= __stddef_max_align_t.h \
xopintrin.h \
${GENINCS}
GENINCS= arm_neon.h
-CLEANFILES= ${GENINCS}
+CLEANFILES= ${GENINCS} ${GENINCS:C/\.h$/.d/}
# avoid a circular dependency
GENDIRDEPS_FILTER+= Nusr.bin/clang/clang-tblgen.host
diff --git a/lib/libc/tests/gen/posix_spawn/Makefile b/lib/libc/tests/gen/posix_spawn/Makefile
index d2dfa5489d968..f20bbd7c3e5fa 100644
--- a/lib/libc/tests/gen/posix_spawn/Makefile
+++ b/lib/libc/tests/gen/posix_spawn/Makefile
@@ -21,6 +21,8 @@ PROGS+= h_spawnattr
SCRIPTS= h_nonexec
SCRIPTS+= h_zero
+CLEANFILES+= h_nonexec
+
.include "../../Makefile.netbsd-tests"
h_zero:
diff --git a/usr.bin/yacc/tests/Makefile b/usr.bin/yacc/tests/Makefile
index c8125a6f39c34..2e157ec61319d 100644
--- a/usr.bin/yacc/tests/Makefile
+++ b/usr.bin/yacc/tests/Makefile
@@ -17,6 +17,8 @@ TEST_METADATA.yacc_tests+= required_user="unprivileged"
SCRIPTS= run_test
SCRIPTSDIR= ${TESTSDIR}
+CLEANFILES= run_test
+
FILESGROUPS= FILES FILEStest FILEStest_yacc
FILEStestDIR= ${TESTSDIR}
diff --git a/usr.sbin/vigr/Makefile b/usr.sbin/vigr/Makefile
index d71998b47326d..52b548e57ca1b 100644
--- a/usr.sbin/vigr/Makefile
+++ b/usr.sbin/vigr/Makefile
@@ -2,5 +2,6 @@
SCRIPTS= vigr
MAN= vigr.8
+CLEANFILES= vigr
.include <bsd.prog.mk>