| OLD | NEW |
| (Empty) |
| 1 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/libxslt | |
| 2 | |
| 3 AM_CFLAGS = $(LIBXML_CFLAGS) | |
| 4 | |
| 5 lib_LTLIBRARIES = libxslt.la | |
| 6 | |
| 7 xsltincdir = $(includedir)/libxslt | |
| 8 | |
| 9 xsltinc_HEADERS = \ | |
| 10 xslt.h \ | |
| 11 xsltutils.h \ | |
| 12 pattern.h \ | |
| 13 templates.h \ | |
| 14 variables.h \ | |
| 15 keys.h \ | |
| 16 numbersInternals.h \ | |
| 17 extensions.h \ | |
| 18 extra.h \ | |
| 19 functions.h \ | |
| 20 namespaces.h \ | |
| 21 imports.h \ | |
| 22 attributes.h \ | |
| 23 documents.h \ | |
| 24 preproc.h \ | |
| 25 transform.h \ | |
| 26 security.h \ | |
| 27 xsltInternals.h \ | |
| 28 xsltexports.h \ | |
| 29 xsltlocale.h | |
| 30 nodist_xsltinc_HEADERS = \ | |
| 31 xsltconfig.h | |
| 32 | |
| 33 libxslt_la_SOURCES = \ | |
| 34 attrvt.c \ | |
| 35 xslt.c \ | |
| 36 xsltlocale.c \ | |
| 37 xsltutils.c \ | |
| 38 pattern.c \ | |
| 39 templates.c \ | |
| 40 variables.c \ | |
| 41 keys.c \ | |
| 42 numbers.c \ | |
| 43 extensions.c \ | |
| 44 extra.c \ | |
| 45 functions.c \ | |
| 46 namespaces.c \ | |
| 47 imports.c \ | |
| 48 attributes.c \ | |
| 49 documents.c \ | |
| 50 preproc.c \ | |
| 51 transform.c \ | |
| 52 security.c \ | |
| 53 win32config.h \ | |
| 54 xsltwin32config.h.in \ | |
| 55 libxslt.h | |
| 56 nodist_libxslt_la_SOURCES = \ | |
| 57 xsltwin32config.h | |
| 58 | |
| 59 if USE_VERSION_SCRIPT | |
| 60 LIBXSLT_VERSION_SCRIPT = $(VERSION_SCRIPT_FLAGS)$(srcdir)/libxslt.syms | |
| 61 else | |
| 62 LIBXSLT_VERSION_SCRIPT = | |
| 63 endif | |
| 64 | |
| 65 libxslt_la_LIBADD = $(LIBXML_LIBS) $(EXTRA_LIBS) $(M_LIBS) | |
| 66 libxslt_la_LDFLAGS = \ | |
| 67 $(WIN32_EXTRA_LDFLAGS) \ | |
| 68 $(LIBXSLT_VERSION_SCRIPT) \ | |
| 69 -version-info $(LIBXSLT_VERSION_INFO) | |
| 70 | |
| 71 man_MANS = libxslt.3 | |
| 72 | |
| 73 EXTRA_DIST = $(man_MANS) trio.h triodef.h libxslt.syms | |
| 74 | |
| 75 xsltproc: all | |
| 76 @(cd ../xsltproc ; $(MAKE)) | |
| 77 | |
| 78 install-exec-hook: | |
| 79 $(MKDIR_P) "$(DESTDIR)$(libdir)/libxslt-plugins" | |
| OLD | NEW |