Skip to content

Commit

Permalink
Partial Revert: Still use .*.d deps
Browse files Browse the repository at this point in the history
Previous commit changed the dependency filenames to not have a leading '.'

Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
  • Loading branch information
geneC committed Dec 10, 2015
1 parent ec4f43d commit 721a0af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mk/syslinux.mk
Expand Up @@ -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.
Expand Down

0 comments on commit 721a0af

Please sign in to comment.