~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to src/adaptation/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2010-05-04 11:15:49 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (20.3.1 squeeze) (21.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20100504111549-1apjh2g5sndki4te
Tags: upstream-3.1.3
ImportĀ upstreamĀ versionĀ 3.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 = $(ECAP_LIBS) $(ECAPLIB) $(ICAP_LIBS)
 
49
 
 
50
libadaptation_la_DEPENDENCIES = $(ECAP_LIBS) $(ICAP_LIBS)