]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/Makefile.am
SourceLayout: rename ClientSocketContext to Http::Stream
[thirdparty/squid.git] / src / acl / Makefile.am
1 ## Copyright (C) 1996-2016 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 SUBDIRS= external
12
13 noinst_LTLIBRARIES = libapi.la libstate.la libacls.la
14
15 ## General data-independent ACL API
16 libapi_la_SOURCES = \
17 Acl.cc \
18 Acl.h \
19 BoolOps.cc \
20 BoolOps.h \
21 Checklist.cc \
22 Checklist.h \
23 forward.h \
24 InnerNode.cc \
25 InnerNode.h \
26 Tree.cc \
27 Tree.h
28
29 ## Data-dependent Squid/transaction state used by specific ACLs.
30 ## Does not refer to specific ACLs to avoid circular dependencies.
31 libstate_la_SOURCES = \
32 Data.h \
33 Strategy.h \
34 Strategised.cc \
35 Strategised.h \
36 FilledChecklist.cc \
37 FilledChecklist.h \
38 Address.h \
39 Address.cc
40
41 ## data-specific ACLs
42 libacls_la_SOURCES = \
43 IntRange.cc \
44 IntRange.h \
45 RegexData.cc \
46 RegexData.h \
47 StringData.cc \
48 StringData.h \
49 Time.cc \
50 Time.h \
51 TimeData.cc \
52 TimeData.h \
53 AllOf.cc \
54 AllOf.h \
55 AnyOf.cc \
56 AnyOf.h \
57 Asn.cc \
58 Asn.h \
59 Browser.cc \
60 Browser.h \
61 ConnectionsEncrypted.cc \
62 ConnectionsEncrypted.h \
63 DestinationAsn.h \
64 DestinationDomain.cc \
65 DestinationDomain.h \
66 DestinationIp.cc \
67 DestinationIp.h \
68 DomainData.cc \
69 DomainData.h \
70 ExtUser.cc \
71 ExtUser.h \
72 HierCodeData.cc \
73 HierCodeData.h \
74 HierCode.cc \
75 HierCode.h \
76 HttpHeaderData.cc \
77 HttpHeaderData.h \
78 HttpRepHeader.cc \
79 HttpRepHeader.h \
80 HttpReqHeader.cc \
81 HttpReqHeader.h \
82 HttpStatus.cc \
83 HttpStatus.h \
84 Ip.cc \
85 Ip.h \
86 LocalIp.cc \
87 LocalIp.h \
88 LocalPort.cc \
89 LocalPort.h \
90 MaxConnection.cc \
91 MaxConnection.h \
92 Method.cc \
93 MethodData.cc \
94 MethodData.h \
95 Method.h \
96 MyPortName.cc \
97 MyPortName.h \
98 Note.h \
99 Note.cc \
100 NoteData.h \
101 NoteData.cc \
102 PeerName.cc \
103 PeerName.h \
104 Protocol.cc \
105 ProtocolData.cc \
106 ProtocolData.h \
107 Protocol.h \
108 Random.cc \
109 Random.h \
110 Referer.cc \
111 Referer.h \
112 ReplyHeaderStrategy.h \
113 ReplyMimeType.cc \
114 ReplyMimeType.h \
115 RequestHeaderStrategy.h \
116 RequestMimeType.cc \
117 RequestMimeType.h \
118 SourceAsn.h \
119 SourceDomain.cc \
120 SourceDomain.h \
121 SourceIp.cc \
122 SourceIp.h \
123 SquidError.h \
124 SquidError.cc \
125 SquidErrorData.cc \
126 SquidErrorData.h \
127 Tag.cc \
128 Tag.h \
129 Url.cc \
130 Url.h \
131 UrlLogin.cc \
132 UrlLogin.h \
133 UrlPath.cc \
134 UrlPath.h \
135 UrlPort.cc \
136 UrlPort.h \
137 UserData.cc \
138 UserData.h \
139 AclNameList.h \
140 AclDenyInfoList.h \
141 Gadgets.cc \
142 Gadgets.h \
143 AclSizeLimit.cc \
144 AclSizeLimit.h
145
146 ## Add conditional sources
147 ## TODO: move these to their respective dirs when those dirs are created
148
149 EXTRA_libacls_la_SOURCES =
150
151 SSL_ACLS = \
152 AtStep.cc \
153 AtStep.h \
154 AtStepData.cc \
155 AtStepData.h \
156 CertificateData.cc \
157 CertificateData.h \
158 Certificate.cc \
159 Certificate.h \
160 ServerCertificate.cc \
161 ServerCertificate.h \
162 ServerName.cc \
163 ServerName.h \
164 SslError.cc \
165 SslError.h \
166 SslErrorData.cc \
167 SslErrorData.h
168
169 if ENABLE_SSL
170 libacls_la_SOURCES += $(SSL_ACLS)
171 endif
172 EXTRA_libacls_la_SOURCES += $(SSL_ACLS)
173
174 ADAPT_ACLS= \
175 AdaptationService.h \
176 AdaptationService.cc \
177 AdaptationServiceData.h \
178 AdaptationServiceData.cc
179
180 if USE_ADAPTATION
181 libacls_la_SOURCES += $(ADAPT_ACLS)
182 endif
183 EXTRA_libacls_la_SOURCES += $(ADAPT_ACLS)
184
185 ARP_ACLS = Arp.cc Arp.h Eui64.cc Eui64.h
186
187 if USE_SQUID_EUI
188 libacls_la_SOURCES += $(ARP_ACLS)
189 endif
190 EXTRA_libacls_la_SOURCES += $(ARP_ACLS)