1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-12-24 21:33:51 +03:00

Toward 1.0.0, added docs to the packages, Daniel.

This commit is contained in:
Daniel Veillard 1999-02-25 11:01:29 +00:00
parent 35925478d1
commit 55a992728b
4 changed files with 22 additions and 11 deletions

View File

@ -1,3 +1,8 @@
Thu Feb 25 11:52:24 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
* configure.in, Makefile.am, doc/makefile.am : General changes for
1.0.0 release and including the generated HTML documentation.
Thu Feb 25 09:44:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
* makefile.am : added parserInternals.h, oops.

View File

@ -58,8 +58,7 @@ tests : tester
confexecdir=$(libdir)
confexec_DATA = xmlConf.sh
EXTRA_DIST = xmlConf.sh.in libxml.spec.in doc/xml.html doc/structure.gif \
doc/DOM.gif
EXTRA_DIST = xmlConf.sh.in libxml.spec.in
dist-hook:
cp libxml.spec $(distdir)

View File

@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.2)
AC_INIT(entities.h)
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(libxml, 0.99.8)
AM_INIT_AUTOMAKE(libxml, 1.0.0)
AC_ARG_WITH(html-dir, [ --with-html-dir=PATH path to installed docs ])

View File

@ -9,9 +9,13 @@ DOC_MAIN_SGML_FILE=gnome-xml.sgml
# The directory containing the source code (if it contains documentation).
DOC_SOURCE_DIR=..
HTML_DIR=$(datadir)/gnome-xml/html
TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
# htmldir = $(prefix)/html
# html_DATA = gnome-dev-info.html
scan:
gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="acconfig.h config.h"
@ -31,8 +35,8 @@ clean-local:
maintainer-clean-local: clean
rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
docdatadir = $(datadir)/aclocal
docdata_DATA = xml.html structure.gif DOM.gif
# docdatadir = $(datadir)/aclocal
# docdata_DATA = xml.html structure.gif DOM.gif
gnome-xml-decl-list.txt : templates
@ -41,11 +45,14 @@ gnome-xml-sections.txt : scan
rebuild: gnome-xml-sections.txt templates sgml html
#install-data-local:
# install -d -m 0755 $(TARGET_DIR)
# install -m 0644 xml.html structure.gif DOM.gif $(TARGET_DIR)
# install -m 0644 html/*.html $(TARGET_DIR)
# install -m 0644 html/index.sgml $(TARGET_DIR)
# gtkdoc-fixxref --module=$(DOC_MODULE) --html-dir=$(HTML_DIR)
install-data-local:
install -d -m 0755 $(TARGET_DIR)
-install -m 0644 $(srcdir)/xml.html $(srcdir)/structure.gif $(srcdir)/DOM.gif $(TARGET_DIR)
-install -m 0644 $(srcdir)/html/*.html $(TARGET_DIR)
-install -m 0644 $(srcdir)/html/index.sgml $(TARGET_DIR)
-gtkdoc-fixxref --module=$(DOC_MODULE) --html-dir=$(HTML_DIR)
dist-hook:
(cd $(srcdir) ; tar cvf - xml.html structure.gif DOM.gif html/*.html html/*.sgml) | (cd $(distdir); tar xf -)
.PHONY : html sgml templates scan