mirror of https://github.com/ipxe/ipxe.git
[makefile] Suppress "No such file or directory" warnings at start of build
Use "-include" rather than "include" for the generated Makefile fragments, in order to suppress the long list of warnings that otherwise appears at the start of a clean build. Contributed by Edward Waugh <ewaugh@netxen.com>pull/1/head
parent
f493283c74
commit
c302eeda5a
|
@ -205,7 +205,7 @@ $(BIN)/deps/%.d : % $(MAKEDEPS) $(PARSEROM)
|
||||||
# Calculate and include the list of Makefile rules files
|
# Calculate and include the list of Makefile rules files
|
||||||
#
|
#
|
||||||
AUTO_DEPS = $(patsubst %,$(BIN)/deps/%.d,$(AUTO_SRCS))
|
AUTO_DEPS = $(patsubst %,$(BIN)/deps/%.d,$(AUTO_SRCS))
|
||||||
include $(AUTO_DEPS)
|
-include $(AUTO_DEPS)
|
||||||
autodeps :
|
autodeps :
|
||||||
@$(ECHO) $(AUTO_DEPS)
|
@$(ECHO) $(AUTO_DEPS)
|
||||||
VERYCLEANUP += $(BIN)/deps
|
VERYCLEANUP += $(BIN)/deps
|
||||||
|
@ -459,7 +459,7 @@ $(BIN)/deps/%.media.d : $(MAKEDEPS)
|
||||||
MEDIA_DEPS = $(patsubst %,$(BIN)/deps/%.media.d,$(AUTO_MEDIA))
|
MEDIA_DEPS = $(patsubst %,$(BIN)/deps/%.media.d,$(AUTO_MEDIA))
|
||||||
mediadeps :
|
mediadeps :
|
||||||
@$(ECHO) $(MEDIA_DEPS)
|
@$(ECHO) $(MEDIA_DEPS)
|
||||||
include $(MEDIA_DEPS)
|
-include $(MEDIA_DEPS)
|
||||||
|
|
||||||
# The "allXXXs" targets for each suffix
|
# The "allXXXs" targets for each suffix
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue