diff options
author | Michael Brown <mcb30@etherboot.org> | 2008-07-24 19:45:35 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2008-07-24 19:45:35 +0100 |
commit | c302eeda5a5b67441fe082b976d54697fe93da82 (patch) | |
tree | 9691500d2cbb06bb67b5d5240020bf6b4c995740 | |
parent | f493283c74e4ded0c4234ddfde097fbfea0b7266 (diff) | |
download | ipxe-c302eeda5a5b67441fe082b976d54697fe93da82.tar.gz |
[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.housekeeping | 4 |
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 # |