From: Michael Brown Date: Thu, 24 Jul 2008 18:45:35 +0000 (+0100) Subject: [makefile] Suppress "No such file or directory" warnings at start of build X-Git-Tag: v0.9.4~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c302eeda5a5b67441fe082b976d54697fe93da82;p=thirdparty%2Fipxe.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 --- diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index 6cd85f7d8..bbbfc8998 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -205,7 +205,7 @@ $(BIN)/deps/%.d : % $(MAKEDEPS) $(PARSEROM) # Calculate and include the list of Makefile rules files # AUTO_DEPS = $(patsubst %,$(BIN)/deps/%.d,$(AUTO_SRCS)) -include $(AUTO_DEPS) +-include $(AUTO_DEPS) autodeps : @$(ECHO) $(AUTO_DEPS) VERYCLEANUP += $(BIN)/deps @@ -459,7 +459,7 @@ $(BIN)/deps/%.media.d : $(MAKEDEPS) MEDIA_DEPS = $(patsubst %,$(BIN)/deps/%.media.d,$(AUTO_MEDIA)) mediadeps : @$(ECHO) $(MEDIA_DEPS) -include $(MEDIA_DEPS) +-include $(MEDIA_DEPS) # The "allXXXs" targets for each suffix #