summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-01-10 12:06:16 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-01-10 12:06:16 +0100
commite427c5471b902c18b073d24ca012d3945b11176a (patch)
tree3df80b6aefc1d4d3657c9d6d5e191efd1f0e2832 /makefile
parent67e5785c2fa3892cb41caefdc10aaf947ed0c5db (diff)
Fixed include paths for 3rdparty libs (nw)
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 08af0145962..e4ed80c3748 100644
--- a/makefile
+++ b/makefile
@@ -752,7 +752,7 @@ LIBS =
# add expat XML library
ifeq ($(BUILD_EXPAT),1)
-INCPATH += -I$(SRC)/lib/expat
+INCPATH += -I$(3RDPARTY)/expat/lib
EXPAT = $(OBJ)/libexpat.a
else
LIBS += -lexpat
@@ -761,7 +761,7 @@ endif
# add ZLIB compression library
ifeq ($(BUILD_ZLIB),1)
-INCPATH += -I$(SRC)/lib/zlib
+INCPATH += -I$(3RDPARTY)/zlib
ZLIB = $(OBJ)/libz.a
else
LIBS += -lz