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.  b7ab6832cd changed cat to build w/o -DWITH_CASPER
by default; add a cat.o dependency on the Makefile so that it gets
rebuilt.
This commit is contained in:
Ed Maste 2021-01-17 12:15:40 -05:00
parent d002814d6b
commit e83b514a95

View file

@ -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>