1 AM_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 
   5 AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(LIBXML_CFLAGS)
   6 
   7 lib_LTLIBRARIES = libexslt.la
   8 
   9 exsltincdir = $(includedir)/libexslt
  10 
  11 exsltinc_HEADERS =                      \
  12         exslt.h                         \
  13         exsltconfig.h                   \
  14         exsltexports.h
  15 
  16 libexslt_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 
  29 libexslt_la_LIBADD = $(top_builddir)/libxslt/libxslt.la $(EXTRA_LIBS) $(LIBGCRYPT_LIBS)
  30 libexslt_la_LDFLAGS = $(WIN32_EXTRA_LDFLAGS) -version-info $(LIBEXSLT_VERSION_INFO)
  31 
  32 man_MANS = libexslt.3
  33 
  34 EXTRA_DIST = $(man_MANS)