aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2021-01-17 17:15:40 +0000
committerEd Maste <emaste@FreeBSD.org>2021-01-17 17:19:00 +0000
commite83b514a9563d5812c9d158ff976f0de96bd90e0 (patch)
tree72242cd33e9981e59cc90c4e734ff4f27fa60c74
parentd002814d6b8edc9cf85f1653ebb568e59f72f9ad (diff)
downloadsrc-e83b514a9563d5812c9d158ff976f0de96bd90e0.tar.gz
src-e83b514a9563d5812c9d158ff976f0de96bd90e0.zip
cat: depend on Makefile to rebuild when WITH_CASPER changes
We try to ensure building WITHOUT_CLEAN (or -DNO_CLEAN) works on an ongoing basis. b7ab6832cd98 changed cat to build w/o -DWITH_CASPER by default; add a cat.o dependency on the Makefile so that it gets rebuilt.
-rw-r--r--bin/cat/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/cat/Makefile b/bin/cat/Makefile
index cce69d8aad9e..06bb071363f8 100644
--- a/bin/cat/Makefile
+++ b/bin/cat/Makefile
@@ -22,5 +22,7 @@ SUBDIR.${MK_TESTS}+= tests
#LIBADD+= cap_net
#CFLAGS+=-DWITH_CASPER
#.endif
+# Depend on Makefile to rebiuld when WITH_CASPER changes
+cat.o: Makefile
.include <bsd.prog.mk>