Menu

[643e74]: / src / test / Makefile.am  Maximize  Restore  History

Download this file

60 lines (49 with data), 1.1 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
## -*- Mode: make; tab-width: 4; indent-tabs-mode: tabs -*-
target_test = test
check_PROGRAMS = $(target_test)
AM_CXXFLAGS = \
-I$(top_srcdir)/inc \
-I$(top_srcdir)/src/lib \
$(CPPUNIT_CFLAGS) \
$(REVENGE_CFLAGS) \
$(REVENGE_STREAM_CFLAGS) \
$(BOOST_CFLAGS) \
$(DEBUG_CXXFLAGS)
if ENABLE_EXPERIMENTAL
AM_CXXFLAGS += \
$(CSS_CFLAGS) \
$(HUBBUB_CFLAGS)
endif
test_LDFLAGS = -L$(top_srcdir)/src/lib
test_LDADD = \
$(top_builddir)/src/lib/libe-book-internal.la \
$(CPPUNIT_LIBS) \
$(ICU_LIBS) \
$(REVENGE_LIBS) \
$(REVENGE_STREAM_LIBS) \
$(ZLIB_LIBS)
if ENABLE_EXPERIMENTAL
test_LDADD += \
$(CSS_LIBS) \
$(HUBBUB_LIBS) \
$(MSPACK_LIBS)
endif
test_SOURCES = \
EBOOKBitStreamTest.cpp \
EBOOKBitStreamTest.h \
EBOOKMemoryStreamTest.cpp \
EBOOKMemoryStreamTest.h \
IMPLZSSStreamTest.cpp \
IMPLZSSStreamTest.h \
PDXLZ77StreamTest.h \
PDXLZ77StreamTest.cpp \
test.cpp
if ENABLE_EXPERIMENTAL
test_SOURCES += \
XMLCollectorTest.cpp \
XMLCollectorTest.h \
XMLTreeWalkerTest.cpp \
XMLTreeWalkerTest.h
endif
TESTS = $(target_test)
## vim:set shiftwidth=4 tabstop=4 noexpandtab: