summaryrefslogtreecommitdiff
path: root/src/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/GNUmakefile')
-rw-r--r--src/GNUmakefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/GNUmakefile b/src/GNUmakefile
index 4abdd22..eaf57c8 100644
--- a/src/GNUmakefile
+++ b/src/GNUmakefile
@@ -10,11 +10,14 @@ INCLUDE_LDFLAGS = \
INCLUDE_DIRS = \
-I$(TOPDIR)/libfetch \
- -I$(TOPDIR)/streamhtmlparser
+ -I$(TOPDIR)/streamhtmlparser \
+ -I$(TOPDIR)/googleurl
INCLUDE_LIBS = \
$(TOPDIR)/libfetch/libfetch.a \
- $(TOPDIR)/streamhtmlparser/libstreamhtmlparser.a
+ $(TOPDIR)/streamhtmlparser/libstreamhtmlparser.a \
+ $(TOPDIR)/googleurl/libgoogleurl.a \
+ -licui18n -licuuc
# openssl
ifeq ($(WITH_SSL),1)
@@ -36,7 +39,8 @@ LOCAL_STATIC_LIB_OBJS = \
HostURLFilter.o \
ChainURLFilter.o \
MemoryURLSeen.o \
- SimpleURLNormalizer.o
+ SimpleURLNormalizer.o \
+ GoogleURLNormalizer.o
CPP_OBJS = \
$(LOCAL_STATIC_LIB_OBJS)