]> git.ipfire.org Git - thirdparty/squid.git/blob - src/adaptation/Makefile.am
SourceFormat Enforcement
[thirdparty/squid.git] / src / adaptation / Makefile.am
1 ## Copyright (C) 1996-2015 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
8 include $(top_srcdir)/src/Common.am
9 include $(top_srcdir)/src/TestHeaders.am
10
11 ## make a list of directories for configured adaptation schemes
12 SUBDIRS =
13
14 if USE_ICAP_CLIENT
15 SUBDIRS += icap
16 endif
17
18 if USE_ECAP
19 SUBDIRS += ecap
20 endif
21
22 noinst_LTLIBRARIES = libadaptation.la
23
24 ## start with the code shared among all adaptation schemes
25 libadaptation_la_SOURCES = \
26 AccessCheck.cc \
27 AccessCheck.h \
28 AccessRule.cc \
29 AccessRule.h \
30 Answer.cc \
31 Answer.h \
32 Config.cc \
33 Config.h \
34 DynamicGroupCfg.cc \
35 DynamicGroupCfg.h \
36 Elements.cc \
37 Elements.h \
38 forward.h \
39 Initiate.cc \
40 Initiate.h \
41 Initiator.cc \
42 Initiator.h \
43 Iterator.cc \
44 Iterator.h \
45 Message.cc \
46 Message.h \
47 Service.cc \
48 Service.h \
49 ServiceConfig.cc \
50 ServiceConfig.h \
51 ServiceGroups.cc \
52 ServiceGroups.h \
53 ServiceFilter.cc \
54 ServiceFilter.h \
55 History.cc \
56 History.h
57
58 # add libraries for specific adaptation schemes
59 libadaptation_la_LIBADD = $(ECAP_LIBS) $(ICAP_LIBS)
60
61 libadaptation_la_DEPENDENCIES = $(ECAP_LIBS) $(ICAP_LIBS)