]> git.ipfire.org Git - thirdparty/squid.git/blob - src/adaptation/Makefile.am
Polished to address Squid Project review comments.
[thirdparty/squid.git] / src / adaptation / Makefile.am
1 include $(top_srcdir)/src/Common.am
2 include $(top_srcdir)/src/TestHeaders.am
3
4 ## make a list of directories for configured adaptation schemes
5 SUBDIRS =
6
7 if USE_ICAP_CLIENT
8 SUBDIRS += icap
9 endif
10
11 if USE_ECAP
12 SUBDIRS += ecap
13 endif
14
15 noinst_LTLIBRARIES = libadaptation.la
16
17 ## start with the code shared among all adaptation schemes
18 libadaptation_la_SOURCES = \
19 AccessCheck.cc \
20 AccessCheck.h \
21 AccessRule.cc \
22 AccessRule.h \
23 Config.cc \
24 Config.h \
25 Elements.cc \
26 Elements.h \
27 forward.h \
28 Initiate.cc \
29 Initiate.h \
30 Initiator.cc \
31 Initiator.h \
32 Iterator.cc \
33 Iterator.h \
34 Message.cc \
35 Message.h \
36 Service.cc \
37 Service.h \
38 ServiceConfig.cc \
39 ServiceConfig.h \
40 ServiceGroups.cc \
41 ServiceGroups.h \
42 ServiceFilter.cc \
43 ServiceFilter.h \
44 History.cc \
45 History.h
46
47 # add libraries for specific adaptation schemes
48 libadaptation_la_LIBADD = $(EXTLIBECAP_LIBS) $(ECAP_LIBS) $(ICAP_LIBS)
49
50 libadaptation_la_DEPENDENCIES = $(ECAP_LIBS) $(ICAP_LIBS)