pivot table procedure conceptually works
[pspp] / doc / automake.mk
index f6f669b1ef42c80be37da834b3ff0bdec833f6ac..a5255e03fe2ddc2ba27bd8f985b2d8eef1bd2b70 100644 (file)
@@ -1,12 +1,11 @@
 ## Process this file with automake to produce Makefile.in  -*- makefile -*-
 
-info_TEXINFOS = doc/pspp.texinfo doc/pspp-dev.texinfo
+info_TEXINFOS = doc/pspp.texi doc/pspp-dev.texi
 
 doc_pspp_TEXINFOS = doc/version.texi \
        doc/bugs.texi \
        doc/command-index.texi \
        doc/concept-index.texi \
-       doc/configuring.texi \
        doc/data-io.texi \
        doc/data-selection.texi \
        doc/expressions.texi \
@@ -19,10 +18,13 @@ doc_pspp_TEXINFOS = doc/version.texi \
        doc/invoking.texi \
        doc/language.texi \
        doc/license.texi \
+       doc/pspp-convert.texi \
        doc/ni.texi \
        doc/not-implemented.texi \
        doc/statistics.texi \
        doc/transformation.texi \
+       doc/tutorial.texi \
+       doc/tut.texi \
        doc/regression.texi \
        doc/utilities.texi \
        doc/variables.texi \
@@ -36,29 +38,53 @@ doc_pspp_dev_TEXINFOS = doc/version-dev.texi \
        doc/dev/i18n.texi \
        doc/dev/output.texi \
        doc/dev/system-file-format.texi \
+       doc/dev/pc+-file-format.texi \
        doc/dev/portable-file-format.texi \
        doc/dev/q2c.texi
 
-EXTRA_DIST += doc/pspp.man \
-       doc/get-commands.pl
+dist_man_MANS += doc/pspp.1 \
+                 doc/psppire.1
 
-doc/ni.texi: $(top_srcdir)/src/language/command.def doc/get-commands.pl
+EXTRA_DIST += 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 > $@
+       $(AM_V_GEN)$(PERL) $(top_srcdir)/doc/get-commands.pl $(top_srcdir)/src/language/command.def > $@
 
+$(srcdir)/doc/tut.texi:
+       @$(MKDIR_P) doc
+       $(AM_V_GEN)echo "@set example-dir $(examplesdir)" > $@
 
-install-info-file:
-       for ifile in $(DESTDIR)$(infodir)/pspp.info-[0-9] $(DESTDIR)$(infodir)/pspp.info  ; do \
-         gzip -f $$ifile ; \
-       done 
 
-INSTALL_DATA_HOOKS += install-info-file
+# The SED and AWK filters in this rule, are to work-around some nasty bugs in makeinfo version 4.13, which produces
+# broken docbook xml.  These workarounds are rather horrible and must be removed asap.
+$(srcdir)/doc/pspp.xml: doc/pspp.texi $(doc_pspp_TEXINFOS)
+       @$(MKDIR_P)  doc
+       $(AM_V_GEN)$(MAKEINFO) $(AM_MAKEINFOFLAGS) --docbook -I $(top_srcdir) \
+               $(top_srcdir)/doc/pspp.texi -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' \
+               -e 's/././g' \
+               -e 's%\(<figure [^>]*\)>%\1/>%g' \
+        | $(AWK) '/<para>.*<table.*>.*<\/para>/{x=sub("</para>",""); print; s=1;next}/<\/table>/{print; if (s==1) print "</para>"; s=0; next}1' \
+       > $@
+       $(AM_V_at)$(XMLLINT) --output /dev/null $@ || ( $(RM) $@ ; false)
 
-uninstall-info-file:
-       $(RM) $(DESTDIR)$(infodir)/pspp.info-[0-9].gz ; \
-       $(RM) $(DESTDIR)$(infodir)/pspp.info.gz ;
+docbookdir = $(docdir)
+dist_docbook_DATA = doc/pspp.xml
 
-UNINSTALL_DATA_HOOKS += uninstall-info-file
+CLEANFILES += pspp-dev.dvi $(docbook_DATA)
 
-EXTRA_DIST += doc/OChangeLog
-CLEANFILES += pspp-dev.dvi
+doc: $(INFO_DEPS) $(DVIS) $(PDFS) $(PSS) $(HTMLS) $(dist_docbook_DATA)
+.PHONY: doc