]> git.ipfire.org Git - thirdparty/squid.git/blob - src/esi/Makefile.am
Merged from trunk
[thirdparty/squid.git] / src / esi / Makefile.am
1 include $(top_srcdir)/src/Common.am
2 include $(top_srcdir)/src/TestHeaders.am
3
4 noinst_LTLIBRARIES = libesi.la
5
6 ESI_PARSER_SOURCES = \
7 CustomParser.cc \
8 CustomParser.h
9
10 if HAVE_LIBEXPAT
11 ESI_PARSER_SOURCES += \
12 ExpatParser.cc \
13 ExpatParser.h
14 endif
15
16 if HAVE_LIBXML2
17 ESI_PARSER_SOURCES += \
18 Libxml2Parser.cc \
19 Libxml2Parser.h
20 endif
21
22 libesi_la_SOURCES = \
23 Assign.cc \
24 Assign.h \
25 Attempt.h \
26 Context.cc \
27 Context.h \
28 $(ESI_PARSER_SOURCES) \
29 Element.h \
30 ElementList.h \
31 Esi.cc \
32 Esi.h \
33 Except.h \
34 Expression.cc \
35 Expression.h \
36 Include.cc \
37 Include.h \
38 Literal.h \
39 Module.cc \
40 Module.h \
41 Parser.cc \
42 Parser.h \
43 Segment.cc \
44 Segment.h \
45 Sequence.cc \
46 Sequence.h \
47 Var.h \
48 VarState.cc \
49 VarState.h