1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-28 04:41:59 +03:00
Files
libxslt/doc/devhelp/Makefile.am
Nick Wellnhofer b3fdf8a966 Rework documentation build system
Since several generated files are under version control, their
timestamps are essentially random and rebuilding documentation using
Makefile dependencies can't work reliably. Simply add a phony rebuild
target that regenerates the whole documentation and other files
unconditionally.

    make -C doc rebuild
2022-03-30 23:58:16 +02:00

48 lines
986 B
Makefile

devhelpdir = $(datadir)/gtk-doc/html/libxslt
dist_devhelp_DATA = \
libxslt.devhelp2 \
$(HTML_FILES) \
$(EXTRA_FORMAT)
HTML_FILES = \
general.html \
index.html \
$(HTML_MODULES)
HTML_MODULES= \
libxslt-attributes.html \
libxslt-documents.html \
libxslt-extensions.html \
libxslt-extra.html \
libxslt-functions.html \
libxslt-imports.html \
libxslt-keys.html \
libxslt-namespaces.html \
libxslt-numbersInternals.html \
libxslt-pattern.html \
libxslt-preproc.html \
libxslt-security.html \
libxslt-templates.html \
libxslt-transform.html \
libxslt-variables.html \
libxslt-xsltexports.html \
libxslt-xslt.html \
libxslt-xsltInternals.html \
libxslt-xsltlocale.html \
libxslt-xsltutils.html
EXTRA_FORMAT= \
home.png \
left.png \
right.png \
up.png \
style.css
EXTRA_DIST = devhelp2.xsl html.xsl
rebuild:
cd $(srcdir) && $(XSLTPROC) --nonet -o libxslt.devhelp2 devhelp2.xsl ../libxslt-api.xml
.PHONY: rebuild