From: Andre Noll Date: Tue, 18 Mar 2008 23:16:38 +0000 (+0100) Subject: Makefile: Use -include instead of include. X-Git-Tag: v0.0.3~3 X-Git-Url: http://git.tuebingen.mpg.de/?p=dss.git;a=commitdiff_plain;h=30ebd6c03647ea5ba594acf5db6e221135b8e0b6;ds=sidebyside Makefile: Use -include instead of include. This gets rid of the warning that make spits out if Makefile.deps does not exist. --- diff --git a/Makefile b/Makefile index cc286a7..a6214b0 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ CPPFLAGS += -Wbad-function-cast Makefile.deps: $(wildcard *.c *.h) gcc -MM -MG *.c > $@ -include Makefile.deps +-include Makefile.deps dss: $(dss_objects) $(CC) $(CPPFLAGS) $(DEBUG_CPPFLAGS) -o $@ $(dss_objects)