]> git.ipfire.org Git - thirdparty/squid.git/blame - src/base/Makefile.am
Merged from trunk rev.14183
[thirdparty/squid.git] / src / base / Makefile.am
CommitLineData
bde978a6 1## Copyright (C) 1996-2015 The Squid Software Foundation and contributors
bbc27441
AJ
2##
3## Squid software is distributed under GPLv2+ license and includes
4## contributions from numerous individuals and organizations.
5## Please see the COPYING and CONTRIBUTORS files for details.
6##
7
97bd4671 8include $(top_srcdir)/src/Common.am
fe57027d 9include $(top_srcdir)/src/TestHeaders.am
5bd7a218
AR
10
11noinst_LTLIBRARIES = libbase.la
12
13libbase_la_SOURCES = \
882255af
AR
14 AsyncCall.cc \
15 AsyncCall.h \
37dedc58 16 AsyncCbdataCalls.h \
5bd7a218 17 AsyncJob.h \
882255af
AR
18 AsyncJob.cc \
19 AsyncJobCalls.h \
20 AsyncCallQueue.cc \
3d93a84d 21 AsyncCallQueue.h \
b0c2361b
AJ
22 CbcPointer.h \
23 CbDataList.h \
3c1106a0 24 CharacterSet.h \
c8046ec7 25 CharacterSet.cc \
8b110b48 26 InstanceId.h \
8bf217bd 27 Lock.h \
a0655385 28 LookupTable.h \
14798e73 29 LruMap.h \
d570dc53 30 Packable.h \
8fcefb30
AJ
31 RegexPattern.cc \
32 RegexPattern.h \
61f3a07b
AR
33 RunnersRegistry.cc \
34 RunnersRegistry.h \
3cb19943 35 Subscription.h \
3d93a84d 36 TextException.cc \
b0c2361b
AJ
37 TextException.h \
38 TidyPointer.h
18538c13
FC
39
40EXTRA_PROGRAMS = \
41 testCharacterSet
42
43check_PROGRAMS += testCharacterSet
44TESTS += testCharacterSet
45
46testCharacterSet_SOURCES = \
47 CharacterSet.h \
48 testCharacterSet.h \
49 testCharacterSet.cc
50nodist_testCharacterSet_SOURCES = \
f8f07d1a
FC
51 $(top_srcdir)/src/tests/stub_debug.cc \
52 $(top_srcdir)/src/tests/stub_MemBuf.cc \
53 $(top_srcdir)/src/tests/stub_cbdata.cc
18538c13
FC
54testCharacterSet_LDFLAGS = $(LIBADD_DL)
55testCharacterSet_LDADD=\
56 $(SQUID_CPPUNIT_LIBS) \
57 $(SQUID_CPPUNIT_LA) \
58 libbase.la \
59 $(COMPAT_LIB) \
60 $(XTRA_LIBS)
61testCharacterSet_DEPENDENCIES= $(SQUID_CPPUNIT_LA)