]> git.ipfire.org Git - thirdparty/squid.git/blame_incremental - src/adaptation/Makefile.am
Source Format Enforcement (#665)
[thirdparty/squid.git] / src / adaptation / Makefile.am
... / ...
CommitLineData
1## Copyright (C) 1996-2020 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
8include $(top_srcdir)/src/Common.am
9include $(top_srcdir)/src/TestHeaders.am
10
11DIST_SUBDIRS= ecap icap
12SUBDIRS =
13
14noinst_LTLIBRARIES = libadaptation.la
15
16libadaptation_la_SOURCES = \
17 AccessCheck.cc \
18 AccessCheck.h \
19 AccessRule.cc \
20 AccessRule.h \
21 Answer.cc \
22 Answer.h \
23 Config.cc \
24 Config.h \
25 DynamicGroupCfg.cc \
26 DynamicGroupCfg.h \
27 Elements.cc \
28 Elements.h \
29 History.cc \
30 History.h \
31 Initiate.cc \
32 Initiate.h \
33 Initiator.cc \
34 Initiator.h \
35 Iterator.cc \
36 Iterator.h \
37 Message.cc \
38 Message.h \
39 Service.cc \
40 Service.h \
41 ServiceConfig.cc \
42 ServiceConfig.h \
43 ServiceFilter.cc \
44 ServiceFilter.h \
45 ServiceGroups.cc \
46 ServiceGroups.h \
47 forward.h
48
49libadaptation_la_LIBADD =
50
51if ENABLE_ECAP
52SUBDIRS += ecap
53libadaptation_la_LIBADD += ecap/libecapsquid.la
54endif
55
56if ENABLE_ICAP_CLIENT
57SUBDIRS += icap
58libadaptation_la_LIBADD += icap/libicap.la
59endif
60