X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=doc%2Fautomake.mk;h=2a06686d6530013abbbaa8234b08c538d50b8602;hb=d96eac87d7f348b87f9d517b0ab3bd0cbe613284;hp=b1065a8d259c2982e4e6677a69b59022bf909cbd;hpb=f51ecb48027e6b1eb46840ae25888a25b429f012;p=pspp diff --git a/doc/automake.mk b/doc/automake.mk index b1065a8d25..2a06686d65 100644 --- a/doc/automake.mk +++ b/doc/automake.mk @@ -43,25 +43,45 @@ doc_pspp_dev_TEXINFOS = doc/version-dev.texi \ EXTRA_DIST += doc/pspp.man \ doc/get-commands.pl -doc/ni.texi: $(top_srcdir)/src/language/command.def 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 > $@ -doc/tut.texi: +$(srcdir)/doc/tut.texi: @$(MKDIR_P) doc echo "@set example-dir $(examplesdir)" > $@ -doc/pspp.xml: doc/pspp.texinfo $(doc_pspp_TEXINFOS) +# 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.texinfo $(doc_pspp_TEXINFOS) @$(MKDIR_P) doc $(MAKEINFO) $(AM_MAKEINFOFLAGS) --docbook -I $(top_srcdir) \ $(top_srcdir)/doc/pspp.texinfo -o - \ - | $(SED) 's/Time-&-Date/Time-\&-Date/g' > $@ - $(XMLLINT) --output /dev/null $@ 2>&1 2> /dev/null || ( $(RM) $@ && false ) + | $(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' \ + > $@ + $(XMLLINT) --output /dev/null $@ || ( $(RM) $@ ; false) docbookdir = $(docdir) -docbook_DATA = doc/pspp.xml - +dist_docbook_DATA = doc/pspp.xml + EXTRA_DIST += doc/OChangeLog CLEANFILES += pspp-dev.dvi $(docbook_DATA) + +doc: $(INFO_DEPS) $(DVIS) $(PDFS) $(PSS) $(HTMLS) $(dist_docbook_DATA) +.PHONY: doc