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
|