summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2008-07-24 20:45:35 +0200
committerMichael Brown2008-07-24 20:45:35 +0200
commitc302eeda5a5b67441fe082b976d54697fe93da82 (patch)
tree9691500d2cbb06bb67b5d5240020bf6b4c995740
parent[phantom] Add new board type (diff)
downloadipxe-c302eeda5a5b67441fe082b976d54697fe93da82.tar.gz
ipxe-c302eeda5a5b67441fe082b976d54697fe93da82.tar.xz
ipxe-c302eeda5a5b67441fe082b976d54697fe93da82.zip
[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>
-rw-r--r--src/Makefile.housekeeping4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping
index 6cd85f7d..bbbfc899 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
#