mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-12 09:17:37 +03:00
5f75c9560f
The tutorial was moved to the Wiki: https://gitlab.gnome.org/GNOME/libxml2/-/wikis/Tutorial
29 lines
763 B
Makefile
29 lines
763 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
SUBDIRS = . devhelp
|
|
|
|
nobase_dist_doc_DATA = \
|
|
xmlcatalog.html \
|
|
xmllint.html
|
|
|
|
dist_man_MANS = xml2-config.1 xmllint.1 xmlcatalog.1
|
|
|
|
EXTRA_DIST = \
|
|
apibuild.py \
|
|
libxml2-api.xml \
|
|
xmlcatalog.xml \
|
|
xmllint.xml \
|
|
meson.build
|
|
|
|
DOCBOOK_HTML = http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl
|
|
|
|
rebuild:
|
|
cd $(srcdir) && ./apibuild.py
|
|
cd $(srcdir) && $(XSLTPROC) --nonet xmllint.xml
|
|
cd $(srcdir) && $(XSLTPROC) --nonet -o xmllint.html $(DOCBOOK_HTML) xmllint.xml
|
|
cd $(srcdir) && $(XSLTPROC) --nonet xmlcatalog.xml
|
|
cd $(srcdir) && $(XSLTPROC) --nonet -o xmlcatalog.html $(DOCBOOK_HTML) xmlcatalog.xml
|
|
cd devhelp && $(MAKE) rebuild
|
|
cd .. && $(MAKE) rebuild_testapi
|
|
|
|
.PHONY: rebuild
|