aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-10 00:05:09 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-10 00:05:09 +0100
commit60dc9e69829579cf52a9ccb344e7261af7f59eff (patch)
tree8608eb126a390667849bb59e618d49f39c2a081f
parentaa0a276ee8455877ab7fc0a4411d9637104f12eb (diff)
Included new dir
-rw-r--r--common.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.mk b/common.mk
index 70243c5..d6748a7 100644
--- a/common.mk
+++ b/common.mk
@@ -2,7 +2,7 @@
.c.o:
$(E) " CC " $@
- $(Q) $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
+ $(Q) $(CC) $(CFLAGS) -I $(INCLUDE_DIR) $(CPPFLAGS) -c -o $@ $<
.cpp.o:
$(E) " CXX " $@
- $(Q) $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $<
+ $(Q) $(CXX) $(CXXFLAGS) -I $(INCLUDE_DIR) $(CPPFLAGS) -c -o $@ $<