| ## Process this file with automake to produce Makefile.in |
| |
| # The name of the module. |
| DOC_MODULE=libxml2-$(VERSION) |
| |
| # The top-level SGML file. |
| DOC_MAIN_SGML_FILE=gnome-xml.sgml |
| |
| # The directory containing the source code (if it contains documentation). |
| DOC_SOURCE_DIR=.. |
| |
| HTML_DIR=@HTML_DIR@ |
| |
| TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)/html |
| |
| # htmldir = $(prefix)/html |
| # html_DATA = gnome-dev-info.html |
| |
| scan: |
| @(if [ -L $(DOC_SOURCE_DIR)/libxml ] ; then rm -f $(DOC_SOURCE_DIR)/libxml ; fi) |
| @(if [ -L $(DOC_SOURCE_DIR)/include ] ; then rm -f $(DOC_SOURCE_DIR)/include ; fi) |
| @(if [ -L $(DOC_SOURCE_DIR)/include/libxml ] ; then rm -f $(DOC_SOURCE_DIR)/include/libxml ; fi) |
| gtkdoc-scan --module=libxml --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="acconfig.h config.h" |
| |
| templates: scan |
| gtkdoc-mktmpl --module=libxml |
| |
| sgml: |
| gtkdoc-mkdb --module=libxml --source-dir=$(DOC_SOURCE_DIR) |
| |
| html: |
| if ! test -d html ; then mkdir html ; fi |
| -cd html && gtkdoc-mkhtml libxml ../$(DOC_MAIN_SGML_FILE) |
| |
| clean-local: |
| rm -f *~ *.bak *.hierarchy *.signals *-unused.txt |
| |
| maintainer-clean-local: clean |
| rm -rf sgml html libxml-decl-list.txt libxml-decl.txt |
| |
| libxml-decl-list.txt : templates |
| |
| libxml-sections.txt : scan |
| cp libxml-decl-list.txt libxml-sections.txt |
| |
| rebuild: libxml-sections.txt templates sgml html |
| |
| install-data-local: |
| $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR) |
| -@INSTALL@ -m 0644 $(srcdir)/xml.html $(srcdir)/encoding.html $(srcdir)/FAQ.html $(srcdir)/structure.gif $(srcdir)/DOM.gif $(DESTDIR)$(TARGET_DIR) |
| -@INSTALL@ -m 0644 $(srcdir)/html/*.html $(DESTDIR)$(TARGET_DIR) |
| -@INSTALL@ -m 0644 $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) |
| -(cd $(DESTDIR); gtkdoc-fixxref --module=libxml --html-dir=$(HTML_DIR)) |
| |
| dist-hook: |
| (cd $(srcdir) ; tar cvf - *.html *.gif html/*.html html/*.sgml) | (cd $(distdir); tar xf -) |
| |
| .PHONY : html sgml templates scan |