summaryrefslogtreecommitdiff
path: root/src/libcrawler/GNUmakefile
blob: a74d128aa4181d47d20ea5f535d0ad2d9b76343e (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
74
75
TOPDIR = ../..

SUBDIRS =

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

INCLUDE_CXXFLAGS = \

ifeq ($(WITH_LUA),1)
INCLUDE_CXXFLAGS += \
	-DWITH_LUA
endif

INCLUDE_LDFLAGS = \

ifeq ($(WITH_LUA),1)
INCLUDE_LDFLAGS += \
	$(TOLUA_LDFLAGS)
endif

INCLUDE_DIRS = \
	-I. \
	-I$(TOPDIR)/include/logger \
	-I$(TOPDIR)/include/util \
	-I$(TOPDIR)/include/crawler

ifeq ($(WITH_LUA),1)
INCLUDE_DIRS += \
	-I$(TOPDIR)/include/luaglue \
	$(TOLUA_INCLUDES)
endif

INCLUDE_LIBS = \

ifeq ($(WITH_LUA),1)
INCLUDE_LIBS += \
	-L$(TOPDIR)/lua/src \
	-llua \
	$(TOLUA_LIBS)
endif

STATIC_LIB = libcrawler.a

DYNAMIC_LIB = libcrawler.so
DYNAMIC_LIB_MAJOR = 0
DYNAMIC_LIB_MINOR = 0
DYNAMIC_LIB_PATCH = 0

CPP_OBJS = \
	URL.o \
	MIMEType.o \
	SpoolRewindInputStream.o \
	libcrawler.o

ifeq ($(WITH_LUA),1)
CPP_OBJS += \
	URLLua.o
endif

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

URLLua.cpp: URL.pkg
	$(TOLUA) -H URLLua.hpp -o URLLua.cpp URL.pkg

local_all:

local_clean:

local_distclean:

local_install:

local_uninstall:

local_test: