Makefile: fix warnings on initial build due to missing *.d files.
authorDavin McCall <davmac@davmac.org>
Mon, 26 Jun 2017 09:21:49 +0000 (10:21 +0100)
committerDavin McCall <davmac@davmac.org>
Mon, 26 Jun 2017 09:21:49 +0000 (10:21 +0100)
These are the auto-generated dependency information files, which do not
exist on initial build (or after clean).

src/Makefile

index e308ec60516eb9d3e5f5bd2dba97b7c9ba4f3238..b996f5f21a17597aa850d9d61df3c38b2230c34b 100644 (file)
@@ -1,4 +1,4 @@
--include ../mconfig
+include ../mconfig
 
 ifeq ($(BUILD_SHUTDOWN),yes)
   SHUTDOWN=shutdown
@@ -40,4 +40,4 @@ clean:
 $(objects:.o=.d): %.d: %.cc
        $(CXX) $(CXXOPTS) -Idasynq -MM -MG -MF $@ $<
 
-include $(objects:.o=.d)
+-include $(objects:.o=.d)