1AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/libxslt -I$(top_srcdir)/libexslt \
2	      -I$(top_builddir) -I$(top_builddir)/libxslt \
3	      -I$(top_builddir)/libexslt
4
5AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(LIBXML_CFLAGS)
6
7lib_LTLIBRARIES = libexslt.la
8
9exsltincdir = $(includedir)/libexslt
10
11exsltinc_HEADERS =                      \
12	exslt.h				\
13	exsltconfig.h			\
14	exsltexports.h
15
16libexslt_la_SOURCES =                   \
17	exslt.c				\
18	common.c			\
19	crypto.c			\
20	math.c				\
21	sets.c				\
22	functions.c			\
23	strings.c			\
24	date.c				\
25	saxon.c				\
26	libexslt.h			\
27	dynamic.c
28
29libexslt_la_LIBADD = $(top_builddir)/libxslt/libxslt.la $(EXTRA_LIBS) $(LIBGCRYPT_LIBS)
30libexslt_la_LDFLAGS = $(WIN32_EXTRA_LDFLAGS) -version-info $(LIBEXSLT_VERSION_INFO)
31
32man_MANS = libexslt.3
33
34EXTRA_DIST = $(man_MANS)
35