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