summaryrefslogtreecommitdiff
path: root/tests/modules/testmod3/GNUmakefile
blob: bdf9eba0359a5b0dfb2c8468dc5139eaa996f81e (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
TOPDIR = ../../..

SUBDIRS =

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

INCLUDE_DIRS = \
	-I. -I$(TOPDIR)/src -I.. \
	-I$(TOPDIR)/include/module \
	-I$(TOPDIR)/include/util \
	-I$(TOPDIR)/tests/modules/libcommon

INCLUDE_CXXFLAGS = \

INCLUDE_LDFLAGS = \
	-L$(TOPDIR)/src/libcrawler

ifeq ($(WITH_LUA),1)
INCLUDE_LDFLAGS += \
	-L$(TOPDIR)/src/libluaglue \
	-L$(TOPDIR)/src/libutil
endif

INCLUDE_LIBS = \
	-lcrawler

ifeq ($(WITH_LUA),1)
INCLUDE_LIBS += \
	-lluaglue -lutil
endif

DYNAMIC_MODULE = \
	mod_test3.so

STATIC_LIB = \
	libtest3.a
	
CPP_OBJS = \
	TestMod3.o

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

local_all:

local_clean:

local_distclean:

local_install:

local_uninstall:

local_test: