Fix Make dependency file names
This commit is contained in:
parent
a4aae1c505
commit
c74ad260fb
1 changed files with 2 additions and 1 deletions
3
rules.mk
3
rules.mk
|
@ -340,7 +340,8 @@ LST = $(patsubst %.c,$(OBJDIR)/%.lst,$(patsubst %.cpp,$(OBJDIR)/%.lst,$(patsubst
|
|||
|
||||
|
||||
# Compiler flags to generate dependency files.
|
||||
GENDEPFLAGS = -MMD -MP -MF .dep/$(@F).d
|
||||
#GENDEPFLAGS = -MMD -MP -MF .dep/$(@F).d
|
||||
GENDEPFLAGS = -MMD -MP -MF .dep/$(subst /,_,$@).d
|
||||
|
||||
|
||||
# Combine all necessary flags and optional flags.
|
||||
|
|
Loading…
Reference in a new issue