1 | INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/libxslt $(LIBXML_CFLAGS)
|
---|
2 |
|
---|
3 | lib_LTLIBRARIES = libxslt.la
|
---|
4 |
|
---|
5 | xsltincdir = $(includedir)/libxslt
|
---|
6 |
|
---|
7 | xsltinc_HEADERS = \
|
---|
8 | xslt.h \
|
---|
9 | xsltutils.h \
|
---|
10 | pattern.h \
|
---|
11 | templates.h \
|
---|
12 | variables.h \
|
---|
13 | keys.h \
|
---|
14 | numbersInternals.h \
|
---|
15 | extensions.h \
|
---|
16 | extra.h \
|
---|
17 | functions.h \
|
---|
18 | namespaces.h \
|
---|
19 | imports.h \
|
---|
20 | attributes.h \
|
---|
21 | documents.h \
|
---|
22 | preproc.h \
|
---|
23 | transform.h \
|
---|
24 | security.h \
|
---|
25 | xsltInternals.h \
|
---|
26 | xsltconfig.h \
|
---|
27 | xsltexports.h
|
---|
28 |
|
---|
29 | libxslt_la_SOURCES = \
|
---|
30 | attrvt.c \
|
---|
31 | xslt.c \
|
---|
32 | xsltutils.c \
|
---|
33 | pattern.c \
|
---|
34 | templates.c \
|
---|
35 | variables.c \
|
---|
36 | keys.c \
|
---|
37 | numbers.c \
|
---|
38 | extensions.c \
|
---|
39 | extra.c \
|
---|
40 | functions.c \
|
---|
41 | namespaces.c \
|
---|
42 | imports.c \
|
---|
43 | attributes.c \
|
---|
44 | documents.c \
|
---|
45 | preproc.c \
|
---|
46 | transform.c \
|
---|
47 | security.c \
|
---|
48 | win32config.h \
|
---|
49 | xsltwin32config.h \
|
---|
50 | xsltwin32config.h.in \
|
---|
51 | libxslt.h
|
---|
52 |
|
---|
53 | libxslt_la_LIBADD = $(EXTRA_LIBS)
|
---|
54 | libxslt_la_LDFLAGS = -version-info @LIBXSLT_VERSION_INFO@
|
---|
55 |
|
---|
56 | man_MANS = libxslt.3
|
---|
57 |
|
---|
58 | EXTRA_DIST = $(man_MANS) trio.h triodef.h
|
---|
59 |
|
---|
60 | xsltproc: all
|
---|
61 | @(cd ../xsltproc ; $(MAKE))
|
---|
62 |
|
---|
63 | install-exec-hook:
|
---|
64 | $(mkinstalldirs) "$(DESTDIR)$(libdir)/libxslt-plugins"
|
---|