| OLD | NEW |
| 1 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/libxslt | 1 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/libxslt |
| 2 | 2 |
| 3 AM_CFLAGS = $(LIBXML_CFLAGS) | 3 AM_CFLAGS = $(LIBXML_CFLAGS) |
| 4 | 4 |
| 5 lib_LTLIBRARIES = libxslt.la | 5 lib_LTLIBRARIES = libxslt.la |
| 6 | 6 |
| 7 xsltincdir = $(includedir)/libxslt | 7 xsltincdir = $(includedir)/libxslt |
| 8 | 8 |
| 9 xsltinc_HEADERS = \ | 9 xsltinc_HEADERS = \ |
| 10 xslt.h \ | 10 xslt.h \ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 libxslt.h | 55 libxslt.h |
| 56 nodist_libxslt_la_SOURCES = \ | 56 nodist_libxslt_la_SOURCES = \ |
| 57 xsltwin32config.h | 57 xsltwin32config.h |
| 58 | 58 |
| 59 if USE_VERSION_SCRIPT | 59 if USE_VERSION_SCRIPT |
| 60 LIBXSLT_VERSION_SCRIPT = $(VERSION_SCRIPT_FLAGS)$(srcdir)/libxslt.syms | 60 LIBXSLT_VERSION_SCRIPT = $(VERSION_SCRIPT_FLAGS)$(srcdir)/libxslt.syms |
| 61 else | 61 else |
| 62 LIBXSLT_VERSION_SCRIPT = | 62 LIBXSLT_VERSION_SCRIPT = |
| 63 endif | 63 endif |
| 64 | 64 |
| 65 libxslt_la_LIBADD = $(LIBXML_LIBS) $(EXTRA_LIBS) | 65 libxslt_la_LIBADD = $(LIBXML_LIBS) $(EXTRA_LIBS) $(M_LIBS) |
| 66 libxslt_la_LDFLAGS = \ | 66 libxslt_la_LDFLAGS = \ |
| 67 $(WIN32_EXTRA_LDFLAGS) \ | 67 $(WIN32_EXTRA_LDFLAGS) \ |
| 68 $(LIBXSLT_VERSION_SCRIPT) \ | 68 $(LIBXSLT_VERSION_SCRIPT) \ |
| 69 -version-info $(LIBXSLT_VERSION_INFO) | 69 -version-info $(LIBXSLT_VERSION_INFO) |
| 70 | 70 |
| 71 man_MANS = libxslt.3 | 71 man_MANS = libxslt.3 |
| 72 | 72 |
| 73 EXTRA_DIST = $(man_MANS) trio.h triodef.h libxslt.syms | 73 EXTRA_DIST = $(man_MANS) trio.h triodef.h libxslt.syms |
| 74 | 74 |
| 75 xsltproc: all | 75 xsltproc: all |
| 76 @(cd ../xsltproc ; $(MAKE)) | 76 @(cd ../xsltproc ; $(MAKE)) |
| 77 | 77 |
| 78 install-exec-hook: | 78 install-exec-hook: |
| 79 $(MKDIR_P) "$(DESTDIR)$(libdir)/libxslt-plugins" | 79 $(MKDIR_P) "$(DESTDIR)$(libdir)/libxslt-plugins" |
| OLD | NEW |