remove /.dep directory

This commit is contained in:
Olaf Rempel 2008-02-04 19:06:40 +01:00
parent 518820b1e1
commit 7b7c950b72
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ ASFLAGS = -mcpu=arm7tdmi -Wa,-adhlns=$(BUILD)/$(*D)/$(*F).lst,--gdwarf-2 -Iinclu
CFLAGS = -gdwarf-2 -mcpu=arm7tdmi -Os -std=gnu99
CFLAGS += -Wa,-adhlns=$(BUILD)/$(*D)/$(*F).lst
CFLAGS += -nostdinc $(patsubst %,-I%,$(INCDIRS))
CFLAGS += -MD -MP -MF $(BUILD)/.dep/$(*F).d
CFLAGS += -MD -MP -MF $(BUILD)/$(*D)/$(*F).d
CFLAGS += -Wall
#CFLAGS += -Wextra
@ -72,4 +72,4 @@ clean:
openocd:
$(shell $(OPENOCD) -f scripts/openocd.cfg)
-include $(shell mkdir -p $(BUILD)/.dep 2> /dev/null) $(wildcard $(BUILD)/.dep/*.d)
-include $(shell find $(BUILD) -name *.d 2> /dev/null)