File: Makefile.am

package info (click to toggle)
libxslt 1.1.43-0.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,556 kB
  • sloc: xml: 66,120; ansic: 36,088; sh: 4,582; python: 3,206; makefile: 1,378; javascript: 470; perl: 34
file content (46 lines) | stat: -rw-r--r-- 1,317 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## Process this file with automake to produce Makefile.in

SUBDIRS = devhelp EXSLT/devhelp

# A file in win32 depends upon two of the doc files
WIN32_DIR=$(top_srcdir)/win32

nobase_dist_doc_DATA =			\
	tutorial/images/callouts/1.png	\
	tutorial/images/callouts/10.png	\
	tutorial/images/callouts/2.png	\
	tutorial/images/callouts/3.png	\
	tutorial/images/callouts/4.png	\
	tutorial/images/callouts/5.png	\
	tutorial/images/callouts/6.png	\
	tutorial/images/callouts/7.png	\
	tutorial/images/callouts/8.png	\
	tutorial/images/callouts/9.png	\
	tutorial/libxslt_tutorial.c	\
	tutorial/libxslttutorial.html	\
	tutorial2/libxslt_pipes.c	\
	tutorial2/libxslt_pipes.html	\
	xsltproc.html

dist_man_MANS = xsltproc.1

EXTRA_DIST =				\
	EXSLT/libexslt-api.xml		\
	apibuild.py			\
	libxslt-api.xml			\
	tutorial/libxslttutorial.xml	\
	tutorial2/libxslt_pipes.xml	\
	xsltproc.xml

DOCBOOK_HTML = /usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl

rebuild:
	cd $(srcdir) && ./apibuild.py
	(if [ -x $(srcdir)/../xsltproc/xsltproc ] ; then \
		cd $(srcdir) && $(srcdir)/../xsltproc/xsltproc --nonet xsltproc.xml; \
		cd $(srcdir) && $(srcdir)/../xsltproc/xsltproc --nonet -o xsltproc.html $(DOCBOOK_HTML) xsltproc.xml; \
	fi)
	cd devhelp && $(MAKE) rebuild
	cd EXSLT/devhelp && $(MAKE) rebuild

.PHONY: rebuild