summaryrefslogtreecommitdiff
path: root/src/GNUmakefile
blob: eaf57c865d5e92faf843ef2ff6b1543407fb1de5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
TOPDIR = ..

SUBDIRS =

-include $(TOPDIR)/makefiles/gmake/platform.mk

INCLUDE_CPPFLAGS = \

INCLUDE_LDFLAGS = \

INCLUDE_DIRS = \
	-I$(TOPDIR)/libfetch \
	-I$(TOPDIR)/streamhtmlparser \
	-I$(TOPDIR)/googleurl

INCLUDE_LIBS = \
	$(TOPDIR)/libfetch/libfetch.a \
	$(TOPDIR)/streamhtmlparser/libstreamhtmlparser.a \
	$(TOPDIR)/googleurl/libgoogleurl.a \
	-licui18n -licuuc

# openssl
ifeq ($(WITH_SSL),1)

INCLUDE_CFLAGS += \
	-DWITH_SSL

INCLUDE_LIBS += \
	$(OPENSSL_LIBS)
endif

LOCAL_STATIC_LIB_OBJS = \
	URL.o \
	LibFetchFetcher.o \
	LibFetchRewindInputStream.o \
	Deduper.o \
	HTMLLinkExtractProcessor.o \
	ProtocolURLFilter.o \
	HostURLFilter.o \
	ChainURLFilter.o \
	MemoryURLSeen.o \
	SimpleURLNormalizer.o \
	GoogleURLNormalizer.o

CPP_OBJS = \
	$(LOCAL_STATIC_LIB_OBJS)

LOCAL_STATIC_LIB = \
	libcrawlingwolf.a

CPP_BINS = \
	crawlingwolf$(EXE)

-include $(TOPDIR)/makefiles/gmake/sub.mk

local_all: $(LOCAL_STATIC_LIB)

$(LOCAL_STATIC_LIB): $(LOCAL_STATIC_LIB_OBJS)
	ar rcs $(LOCAL_STATIC_LIB) $(LOCAL_STATIC_LIB_OBJS)

local_clean:

local_distclean:

local_install:
	$(INSTALL) -d -m 0755 $(DESTDIR)$(bindir)
	$(INSTALL) -m 0775 crawlingwolf$(EXE) $(DESTDIR)$(bindir)

local_uninstall:
	@-rm -f $(DESTDIR)$(bindir)/crawlingwolf
	@-rmdir $(DESTDIR)$(bindir)

local_test: