From c6446032ba13cfea4fbcae1ddf2fefb2dc8b30bd Mon Sep 17 00:00:00 2001 From: Davin McCall Date: Mon, 26 Jun 2017 10:21:49 +0100 Subject: [PATCH 1/1] Makefile: fix warnings on initial build due to missing *.d files. These are the auto-generated dependency information files, which do not exist on initial build (or after clean). --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index e308ec6..b996f5f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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) -- 2.25.1