1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
## Process this file with automake to produce Makefile.in -*- makefile -*-
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/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 \
doc/introduction.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 \
doc/fdl.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
$(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 > $@
$(srcdir)/doc/tut.texi:
@$(MKDIR_P) doc
echo "@set example-dir $(examplesdir)" > $@
# 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
$(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' \
> $@
$(XMLLINT) --output /dev/null $@ || ( $(RM) $@ ; false)
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
|