]> git.ipfire.org Git - thirdparty/squid.git/blob - src/esi/Makefile.am
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / esi / 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 noinst_LTLIBRARIES = libesi.la
12
13 ESI_PARSER_SOURCES = \
14 CustomParser.cc \
15 CustomParser.h
16
17 if ENABLE_LIBEXPAT
18 ESI_PARSER_SOURCES += \
19 ExpatParser.cc \
20 ExpatParser.h
21 endif
22
23 if ENABLE_LIBXML2
24 ESI_PARSER_SOURCES += \
25 Libxml2Parser.cc \
26 Libxml2Parser.h
27 endif
28
29 libesi_la_SOURCES = \
30 Assign.cc \
31 Assign.h \
32 Attempt.h \
33 Context.cc \
34 Context.h \
35 $(ESI_PARSER_SOURCES) \
36 Element.h \
37 ElementList.h \
38 Esi.cc \
39 Esi.h \
40 Except.h \
41 Expression.cc \
42 Expression.h \
43 Include.cc \
44 Include.h \
45 Literal.h \
46 Module.cc \
47 Module.h \
48 Parser.cc \
49 Parser.h \
50 Segment.cc \
51 Segment.h \
52 Sequence.cc \
53 Sequence.h \
54 Var.h \
55 VarState.cc \
56 VarState.h