Generate phony targets in auto-dependencies
This will fix problem with missing dependencies where #include changes
This commit is contained in:
parent
a96a12bd47
commit
3abcbace72
4
Makefile
4
Makefile
|
@ -555,12 +555,12 @@ CFLAGS = $(ARCH_FLAGS) \
|
||||||
-D'__TARGET__="$(TARGET)"' \
|
-D'__TARGET__="$(TARGET)"' \
|
||||||
-D'__REVISION__="$(REVISION)"' \
|
-D'__REVISION__="$(REVISION)"' \
|
||||||
-save-temps=obj \
|
-save-temps=obj \
|
||||||
-MMD
|
-MMD -MP
|
||||||
|
|
||||||
ASFLAGS = $(ARCH_FLAGS) \
|
ASFLAGS = $(ARCH_FLAGS) \
|
||||||
-x assembler-with-cpp \
|
-x assembler-with-cpp \
|
||||||
$(addprefix -I,$(INCLUDE_DIRS)) \
|
$(addprefix -I,$(INCLUDE_DIRS)) \
|
||||||
-MMD
|
-MMD -MP
|
||||||
|
|
||||||
LDFLAGS = -lm \
|
LDFLAGS = -lm \
|
||||||
-nostartfiles \
|
-nostartfiles \
|
||||||
|
|
Loading…
Reference in New Issue