]> git.ipfire.org Git - thirdparty/squid.git/blame - src/base/Makefile.am
Boilerplate: update copyright blurbs on src/
[thirdparty/squid.git] / src / base / Makefile.am
CommitLineData
bbc27441
AJ
1## Copyright (C) 1996-2014 The Squid Software Foundation and contributors
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 \
3c1106a0 22 CharacterSet.h \
c8046ec7 23 CharacterSet.cc \
95d2589c 24 TidyPointer.h \
4299f876 25 CbcPointer.h \
8b110b48 26 InstanceId.h \
8bf217bd 27 Lock.h \
14798e73 28 LruMap.h \
61f3a07b
AR
29 RunnersRegistry.cc \
30 RunnersRegistry.h \
3cb19943 31 Subscription.h \
3d93a84d 32 TextException.cc \
3cf8f5c1 33 TextException.h
18538c13
FC
34
35EXTRA_PROGRAMS = \
36 testCharacterSet
37
38check_PROGRAMS += testCharacterSet
39TESTS += testCharacterSet
40
41testCharacterSet_SOURCES = \
42 CharacterSet.h \
43 testCharacterSet.h \
44 testCharacterSet.cc
45nodist_testCharacterSet_SOURCES = \
f8f07d1a
FC
46 $(top_srcdir)/src/tests/testMain.cc \
47 $(top_srcdir)/src/tests/stub_debug.cc \
48 $(top_srcdir)/src/tests/stub_MemBuf.cc \
49 $(top_srcdir)/src/tests/stub_cbdata.cc
18538c13
FC
50testCharacterSet_LDFLAGS = $(LIBADD_DL)
51testCharacterSet_LDADD=\
52 $(SQUID_CPPUNIT_LIBS) \
53 $(SQUID_CPPUNIT_LA) \
54 libbase.la \
55 $(COMPAT_LIB) \
56 $(XTRA_LIBS)
57testCharacterSet_DEPENDENCIES= $(SQUID_CPPUNIT_LA)