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