From 30ebd6c03647ea5ba594acf5db6e221135b8e0b6 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Wed, 19 Mar 2008 00:16:38 +0100 Subject: [PATCH] Makefile: Use -include instead of include. This gets rid of the warning that make spits out if Makefile.deps does not exist. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2