diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2014-08-11 21:42:06 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2014-08-11 21:42:06 +0000 |
commit | dcd8c2c69124b49d6245a809aab5165b197d873b (patch) | |
tree | c86951de42a644411c72f21c742b3b3a84b2982b /share | |
parent | 9b782f6cd9f76b34190ee21e54964c0377eda93c (diff) | |
download | FreeBSD-src-dcd8c2c69124b49d6245a809aab5165b197d873b.zip FreeBSD-src-dcd8c2c69124b49d6245a809aab5165b197d873b.tar.gz |
Add .d files to the reverse matching pattern in bsd.dep.mk to account
for source file dependencies.
This follows the .y and .l behaviour.
MFC after: 3 days
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.dep.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/mk/bsd.dep.mk b/share/mk/bsd.dep.mk index 0b3f999..a360f60 100644 --- a/share/mk/bsd.dep.mk +++ b/share/mk/bsd.dep.mk @@ -73,7 +73,7 @@ tags: ${SRCS} CLEANFILES?= .if !exists(${.OBJDIR}/${DEPENDFILE}) -.for _S in ${SRCS:N*.[hly]} +.for _S in ${SRCS:N*.[dhly]} ${_S:R}.o: ${_S} .endfor .endif |