]> git.ipfire.org Git - thirdparty/squid.git/blob - src/base/Makefile.am
Merge from CharacterSet
[thirdparty/squid.git] / src / base / Makefile.am
1 include $(top_srcdir)/src/Common.am
2 include $(top_srcdir)/src/TestHeaders.am
3
4 noinst_LTLIBRARIES = libbase.la
5
6 libbase_la_SOURCES = \
7 AsyncCall.cc \
8 AsyncCall.h \
9 AsyncCbdataCalls.h \
10 AsyncJob.h \
11 AsyncJob.cc \
12 AsyncJobCalls.h \
13 AsyncCallQueue.cc \
14 AsyncCallQueue.h \
15 CharacterSet.h \
16 CharacterSet.cc \
17 TidyPointer.h \
18 CbcPointer.h \
19 InstanceId.h \
20 Lock.h \
21 LruMap.h \
22 RunnersRegistry.cc \
23 RunnersRegistry.h \
24 Subscription.h \
25 TextException.cc \
26 TextException.h \
27 Vector.cc \
28 Vector.h
29
30 EXTRA_PROGRAMS = \
31 testCharacterSet
32
33 check_PROGRAMS += testCharacterSet
34 TESTS += testCharacterSet
35
36 testCharacterSet_SOURCES = \
37 CharacterSet.h \
38 testCharacterSet.h \
39 testCharacterSet.cc
40 nodist_testCharacterSet_SOURCES = \
41 $(top_srcdir)/src/tests/testMain.cc \
42 $(top_srcdir)/src/tests/stub_debug.cc \
43 $(top_srcdir)/src/tests/stub_MemBuf.cc \
44 $(top_srcdir)/src/tests/stub_cbdata.cc
45 testCharacterSet_LDFLAGS = $(LIBADD_DL)
46 testCharacterSet_LDADD=\
47 $(SQUID_CPPUNIT_LIBS) \
48 $(SQUID_CPPUNIT_LA) \
49 libbase.la \
50 $(COMPAT_LIB) \
51 $(XTRA_LIBS)
52 testCharacterSet_DEPENDENCIES= $(SQUID_CPPUNIT_LA)