aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGene Cumm <gene.cumm@gmail.com>2015-12-10 14:49:41 -0500
committerGene Cumm <gene.cumm@gmail.com>2015-12-10 14:49:41 -0500
commit721a0af2f0ba111c31685c5f6c5481eb25346971 (patch)
tree8732815a62ab7fd1dbb89fa5ff0995b2bbcaaef1
parentec4f43dcda3cace9ba035c775d792389ce2a454c (diff)
downloadsyslinux-721a0af2f0ba111c31685c5f6c5481eb25346971.tar.gz
syslinux-721a0af2f0ba111c31685c5f6c5481eb25346971.tar.xz
syslinux-721a0af2f0ba111c31685c5f6c5481eb25346971.zip
Partial Revert: Still use .*.d deps
Previous commit changed the dependency filenames to not have a leading '.' Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
-rw-r--r--mk/syslinux.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/syslinux.mk b/mk/syslinux.mk
index 9ca74b1d..46355c9e 100644
--- a/mk/syslinux.mk
+++ b/mk/syslinux.mk
@@ -82,11 +82,11 @@ ARCH ?= $(strip $(SUBARCH))
GCCWARN = -W -Wall -Wstrict-prototypes $(DEBUGOPT)
# Common stanza to make gcc generate .*.d dependency files
-MAKEDEPS = -MT $@ -MD
+MAKEDEPS = -MT $@ -MD -MF $(dir $@).$(notdir $@).d
# Dependencies that exclude system headers; use whenever we use
# header files from the platform.
-UMAKEDEPS = -MT $@ -MMD
+UMAKEDEPS = -MT $@ -MMD -MF $(dir $@).$(notdir $@).d
# Items that are only appropriate during development; this file is
# removed when tarballs are generated.