X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2Fautomake.mk;h=b4d93ce1b304a21a7e4c0eb950bd5fdbc90287ff;hb=e314315b24e8f4356c1e72a61bef6633f8992bf4;hp=4eb3b30016d42dd6cd8e2ff7f00c6bc6ebfcb5b9;hpb=571f85fc18f4b8cafea2d7b8ea6cf2c4cb2b02c8;p=pspp diff --git a/doc/automake.mk b/doc/automake.mk index 4eb3b30016..b4d93ce1b3 100644 --- a/doc/automake.mk +++ b/doc/automake.mk @@ -1,17 +1,16 @@ ## Process this file with automake to produce Makefile.in -*- makefile -*- -info_TEXINFOS = doc/pspp.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-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,33 +18,81 @@ doc_pspp_TEXINFOS = doc/version.texi \ doc/invoking.texi \ doc/language.texi \ doc/license.texi \ + doc/pspp-convert.texi \ + doc/pspp-dump-sav.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/pc+-file-format.texi \ + doc/dev/portable-file-format.texi \ + doc/dev/encrypted-file-wrappers.texi \ + doc/dev/q2c.texi +dist_man_MANS += doc/pspp.1 \ + doc/psppire.1 -EXTRA_DIST += doc/pspp.man \ - doc/get-commands.pl \ - $(doc_pspp_TEXINFOS) +EXTRA_DIST += doc/get-commands.pl doc/help-pages-list -CLEANFILES += doc/pspp.info doc/pspp.info-* $(top_builddir)/doc/ni.texi +$(srcdir)/doc/ni.texi: $(top_srcdir)/src/language/command.def doc/get-commands.pl + @$(MKDIR_P) doc + $(AM_V_GEN)$(PERL) $(top_srcdir)/doc/get-commands.pl $(top_srcdir)/src/language/command.def > $@ -#Kludge to overcome automake limitations -doc/%.dvi: am__TEXINFO_TEX_DIR=$(top_builddir)/doc +$(srcdir)/doc/tut.texi: + @$(MKDIR_P) doc + $(AM_V_GEN)echo "@set example-dir $(examplesdir)" > $@ -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 > $@ +# 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) $(top_srcdir)/doc/help-pages-list + @$(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%\(
]*\)>%\1/>%g' \ + | $(AWK) '/.*.*<\/para>/{x=sub("",""); print; s=1;next}/<\/table>/{print; if (s==1) print ""; s=0; next}1' \ + > $@,tmp + $(AM_V_at)$(XMLLINT) --output /dev/null $@,tmp + $(AM_V_at)cat $(top_srcdir)/doc/help-pages-list | while read node ; do \ + $(XMLLINT) --xpath "$$node" $@,tmp > /dev/null; \ + if test $$? -ne 0 ; then echo "$$node does not appear in $@" ; exit 1; fi ; \ + done + mv $@,tmp $@ -$(INFO_DEPS): $(top_builddir)/doc/ni.texi -$(HTML_DEPS): $(top_builddir)/doc/ni.texi +docbookdir = $(docdir) +dist_docbook_DATA = doc/pspp.xml + +CLEANFILES += pspp-dev.dvi $(docbook_DATA) + +doc: $(INFO_DEPS) $(DVIS) $(PDFS) $(PSS) $(HTMLS) $(dist_docbook_DATA) +.PHONY: doc