Browse Source

Fix Make dependency file names

pull/12/head
tmk 11 years ago
parent
commit
c74ad260fb
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      rules.mk

+ 2
- 1
rules.mk View File

@ -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…
Cancel
Save