Skip to content

Commit

Permalink
[makefile] Suppress "No such file or directory" warnings at start of …
Browse files Browse the repository at this point in the history
…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>
  • Loading branch information
Michael Brown committed Jul 24, 2008
1 parent f493283 commit c302eed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile.housekeeping
Expand Up @@ -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
Expand Down Expand Up @@ -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
#
Expand Down

0 comments on commit c302eed

Please sign in to comment.