Skip to content

Commit

Permalink
Fix Make dependency file names
Browse files Browse the repository at this point in the history
  • Loading branch information
yashikno committed Feb 15, 2013
1 parent a4aae1c commit c74ad26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rules.mk
Expand Up @@ -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.
Expand Down

0 comments on commit c74ad26

Please sign in to comment.