1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Andreas Tille <tille@debian.org>
Date: Fri, 4 Sep 2020 09:33:17 +0200
Subject: Fix include
Last-Update: Tue, 09 Jun 2020 16:15:15 +0200
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 5b095d6..376979d 100644
--- a/Makefile
+++ b/Makefile
@@ -108,7 +108,7 @@ endif
subdirs := $(sort $(dir $(filter-out $(skipUchime), $(wildcard source/*/))))
subDirIncludes = $(patsubst %, -I %, $(subdirs))
subDirLinking = $(patsubst %, -L%, $(subdirs))
- CXXFLAGS += -I. $(subDirIncludes)
+ CXXFLAGS += -Isource $(subDirIncludes)
LDFLAGS += $(subDirLinking)
OBJECTS=$(patsubst %.cpp,%.o,$(wildcard $(addsuffix *.cpp,$(subdirs))))
|