work on PRINT encoding
[pspp] / doc / automake.mk
index 7c19acc01a52c4d5a85b40570b72d9ecf44524ba..fe8abd764f9b370ccec9861e49d7ce9d3e31b666 100644 (file)
@@ -1,17 +1,16 @@
 ## Process this file with automake to produce Makefile.in  -*- makefile -*-
 
-info_TEXINFOS = doc/pspp.texinfo 
+info_TEXINFOS = doc/pspp.texinfo doc/pspp-dev.texinfo
 
 doc_pspp_TEXINFOS = doc/version.texi \
        doc/bugs.texi \
        doc/command-index.texi \
        doc/concept-index.texi \
-       doc/configuring.texi \
-       doc/data-file-format.texi \
        doc/data-io.texi \
        doc/data-selection.texi \
        doc/expressions.texi \
        doc/files.texi \
+       doc/combining.texi \
        doc/flow-control.texi \
        doc/function-index.texi \
        doc/installing.texi \
@@ -19,32 +18,61 @@ doc_pspp_TEXINFOS = doc/version.texi \
        doc/invoking.texi \
        doc/language.texi \
        doc/license.texi \
+       doc/ni.texi \
        doc/not-implemented.texi \
-       doc/portable-file-format.texi \
-       doc/q2c.texi \
        doc/statistics.texi \
        doc/transformation.texi \
+       doc/tutorial.texi \
+       doc/tut.texi \
        doc/regression.texi \
        doc/utilities.texi \
        doc/variables.texi \
        doc/fdl.texi 
 
-nodist_doc_pspp_TEXINFOS = doc/ni.texi
-
+doc_pspp_dev_TEXINFOS = doc/version-dev.texi \
+       doc/dev/intro.texi \
+       doc/dev/concepts.texi \
+       doc/dev/syntax.texi \
+       doc/dev/data.texi \
+       doc/dev/i18n.texi \
+       doc/dev/output.texi \
+       doc/dev/system-file-format.texi \
+       doc/dev/portable-file-format.texi \
+       doc/dev/q2c.texi
 
 EXTRA_DIST += doc/pspp.man \
-       doc/get-commands.pl \
-       $(doc_pspp_TEXINFOS)
+       doc/get-commands.pl
+
+$(srcdir)/doc/ni.texi: $(top_srcdir)/src/language/command.def doc/get-commands.pl
+       @$(MKDIR_P)  doc
+       $(PERL) $(top_srcdir)/doc/get-commands.pl $(top_srcdir)/src/language/command.def > $@
 
-# Kludge to get around automake deficiency.
-am__TEXINFO_TEX_DIR=./doc
+$(srcdir)/doc/tut.texi:
+       @$(MKDIR_P) doc
+       echo "@set example-dir $(examplesdir)" > $@
 
-doc/ni.texi: $(top_srcdir)/src/language/command.def doc/get-commands.pl
-       @$(top_srcdir)/mkinstalldirs  doc
-       @PERL@ $(top_srcdir)/doc/get-commands.pl $(top_srcdir)/src/language/command.def > $@
 
+$(srcdir)/doc/pspp.xml: doc/pspp.texinfo $(doc_pspp_TEXINFOS)
+       @$(MKDIR_P)  doc
+       $(MAKEINFO) $(AM_MAKEINFOFLAGS) --docbook -I $(top_srcdir) \
+               $(top_srcdir)/doc/pspp.texinfo -o - \
+               | $(SED) -e 's/Time-&-Date/Time-\&-Date/g' \
+               -e 's/“/\“/g' \
+               -e 's/”/\”/g' \
+               -e 's/‘/\‘/g' \
+               -e 's/’/\’/g' \
+               -e 's/—/\—/g' \
+               -e 's/–/\′/g' \
+                -e 's/é/\é/g' \
+               -e 's/©/\©/g' \
+               -e 's/−/\−/g' \
+               -e 's/…/\…/g' \
+               -e 's/././g' \
+               > $@
+       $(XMLLINT) --output /dev/null $@ 2>&1 2> /dev/null || ( $(RM) $@ && false )
 
-$(INFO_DEPS): doc/ni.texi
-$(HTML_DEPS): doc/ni.texi
+docbookdir = $(docdir)
+dist_docbook_DATA = doc/pspp.xml
 
-CLEANFILES += doc/ni.texi
+EXTRA_DIST += doc/OChangeLog
+CLEANFILES += pspp-dev.dvi $(docbook_DATA)