]> git.ipfire.org Git - thirdparty/squid.git/blob - src/parser/Makefile.am
Merged characterset branch
[thirdparty/squid.git] / src / parser / Makefile.am
1 include $(top_srcdir)/src/Common.am
2 include $(top_srcdir)/src/TestHeaders.am
3
4 EXTRA_PROGRAMS = \
5 testTokenizer
6
7 check_PROGRAMS += testTokenizer
8 TESTS += testTokenizer
9
10 noinst_LTLIBRARIES = libsquid-parser.la
11
12 libsquid_parser_la_SOURCES = \
13 Tokenizer.h \
14 Tokenizer.cc
15
16 SBUF_SOURCE= \
17 $(top_srcdir)/base/CharacterSet.h \
18 $(top_srcdir)/src/SBuf.h \
19 $(top_srcdir)/src/SBuf.cc \
20 $(top_srcdir)/src/MemBlob.h \
21 $(top_srcdir)/src/MemBlob.cc \
22 $(top_srcdir)/src/OutOfBoundsException.h \
23 $(top_srcdir)/src/SBufExceptions.h \
24 $(top_srcdir)/src/SBufExceptions.cc \
25 $(top_srcdir)/src/String.cc \
26 $(top_srcdir)/src/SquidString.h \
27 $(top_srcdir)/src/base/TextException.h \
28 $(top_srcdir)/src/base/TextException.cc
29
30 testTokenizer_SOURCES = \
31 CharacterSet.h \
32 $(SBUF_SOURCE) \
33 testTokenizer.h \
34 testTokenizer.cc \
35 Tokenizer.h
36 nodist_testTokenizer_SOURCES = \
37 $(top_srcdir)/src/tests/testMain.cc \
38 $(top_srcdir)/src/tests/stub_mem.cc \
39 $(top_srcdir)/src/tests/stub_debug.cc \
40 $(top_srcdir)/src/tests/stub_time.cc \
41 $(top_srcdir)/src/tests/stub_SBufDetailedStats.cc
42 testTokenizer_LDFLAGS = $(LIBADD_DL)
43 testTokenizer_LDADD = \
44 libsquid-parser.la \
45 $(top_builddir)/lib/libmiscutil.la \
46 $(top_builddir)/src/base/libbase.la \
47 $(SQUID_CPPUNIT_LIBS) \
48 $(SQUID_CPPUNIT_LA) \
49 $(COMPAT_LIB)
50 testTokenizer_DEPENDENCIES = $(SQUID_CPPUNIT_LA)