Makefile: Use -include instead of include.
authorAndre Noll <maan@systemlinux.org>
Tue, 18 Mar 2008 23:16:38 +0000 (00:16 +0100)
committerAndre Noll <maan@systemlinux.org>
Tue, 18 Mar 2008 23:16:38 +0000 (00:16 +0100)
This gets rid of the warning that make spits out if Makefile.deps
does not exist.

Makefile

index cc286a7b068c601894346b0269b51af784a35807..a6214b0cd1be9fe7e0f1abe00937280ef26abe22 100644 (file)
--- 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)