[go: up one dir, main page]

Menu

[ab7a0e]: / test / Makefile.am  Maximize  Restore  History

Download this file

77 lines (60 with data), 2.2 kB

 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
76
## Process this file with automake to produce Makefile.in
## $Id: Makefile.am,v 1.19 2007/09/15 18:03:34 dan_karrels Exp $
noinst_PROGRAMS = test_burst \
test_mtrie_load \
test_mtrie_perf_summary \
test_mtrie_perf \
test_mtrie \
test_stringtokenizer \
test_econfig \
test_gThread \
test_signal \
test_match \
test_bot \
test_kick_transaction
LDADD = $(LIBGNUWORLD)
if COND_PCRE
noinst_PROGRAMS += test_regex
endif
test_burst_SOURCES = burst.cc
test_burst_CXXFLAGS = -I${top_srcdir}/include -I${top_srcdir}/libgnuworld
test_mtrie_SOURCES = mtrie.cc
test_mtrie_CXXFLAGS = -I${top_srcdir}/include -I${top_srcdir}/libgnuworld
test_mtrie_load_SOURCES = mtrie_load.cc
test_mtrie_load_CXXFLAGS = -I${top_srcdir}/include -I${top_srcdir}/libgnuworld
test_mtrie_perf_SOURCES = mtrie_perf.cc
test_mtrie_perf_CXXFLAGS = -I${top_srcdir}/include -I${top_srcdir}/libgnuworld
test_mtrie_perf_summary_SOURCES = mtrie_perf_summary.cc
test_mtrie_perf_summary_CXXFLAGS = -I${top_srcdir}/include \
-I${top_srcdir}/libgnuworld
test_stringtokenizer_SOURCES = stringtokenizer.cc
test_stringtokenizer_CXXFLAGS = -I${top_srcdir}/include \
-I${top_srcdir}/libgnuworld
test_econfig_SOURCES = econfig.cc
test_econfig_CXXFLAGS = -I${top_srcdir}/include -I${top_srcdir}/libgnuworld
test_match_SOURCES = match.cc
test_match_CXXFLAGS = -I${top_srcdir}/include -I${top_srcdir}/libgnuworld
test_bot_SOURCES = testbot.cc
test_bot_CXXFLAGS = -I${top_srcdir}/include -I${top_srcdir}/libgnuworld
test_kick_transaction_SOURCES = test_kick_transaction.cc
test_kick_transaction_CXXFLAGS = -I${top_srcdir}/include \
-I${top_srcdir}/libgnuworld
test_regex_SOURCES = test_regex.cc
test_regex_LDFLAGS = -lpcre
test_gThread_SOURCES = gThread.cc
test_gThread_LDFLAGS = $(top_builddir)/libgnuworld/libgnuworld.la \
$(threadLib)
test_gThread_CXXFLAGS = -I${top_srcdir}/include -I${top_srcdir}/libgnuworld
test_signal_SOURCES = signal.cc
test_signal_LDFLAGS = $(LIBGNUWORLD) $(threadLib)
test_signal_CXXFLAGS = -I${top_srcdir}/include -I${top_srcdir}/libgnuworld
EXTRA_DIST = testbot.h \
README.burst \
README.econfig \
README.gthread \
README.match \
README.mtrie \
README.signal \
README.stringtokenizer \
README.testBot \
README.test_kick_transaction