2a06686d6530013abbbaa8234b08c538d50b8602
[pspp] / doc / automake.mk
1 ## Process this file with automake to produce Makefile.in  -*- makefile -*-
2
3 info_TEXINFOS = doc/pspp.texinfo doc/pspp-dev.texinfo
4
5 doc_pspp_TEXINFOS = doc/version.texi \
6         doc/bugs.texi \
7         doc/command-index.texi \
8         doc/concept-index.texi \
9         doc/data-io.texi \
10         doc/data-selection.texi \
11         doc/expressions.texi \
12         doc/files.texi \
13         doc/combining.texi \
14         doc/flow-control.texi \
15         doc/function-index.texi \
16         doc/installing.texi \
17         doc/introduction.texi \
18         doc/invoking.texi \
19         doc/language.texi \
20         doc/license.texi \
21         doc/ni.texi \
22         doc/not-implemented.texi \
23         doc/statistics.texi \
24         doc/transformation.texi \
25         doc/tutorial.texi \
26         doc/tut.texi \
27         doc/regression.texi \
28         doc/utilities.texi \
29         doc/variables.texi \
30         doc/fdl.texi 
31
32 doc_pspp_dev_TEXINFOS = doc/version-dev.texi \
33         doc/dev/intro.texi \
34         doc/dev/concepts.texi \
35         doc/dev/syntax.texi \
36         doc/dev/data.texi \
37         doc/dev/i18n.texi \
38         doc/dev/output.texi \
39         doc/dev/system-file-format.texi \
40         doc/dev/portable-file-format.texi \
41         doc/dev/q2c.texi
42
43 EXTRA_DIST += doc/pspp.man \
44         doc/get-commands.pl
45
46 $(srcdir)/doc/ni.texi: $(top_srcdir)/src/language/command.def doc/get-commands.pl
47         @$(MKDIR_P)  doc
48         $(PERL) $(top_srcdir)/doc/get-commands.pl $(top_srcdir)/src/language/command.def > $@
49
50 $(srcdir)/doc/tut.texi:
51         @$(MKDIR_P) doc
52         echo "@set example-dir $(examplesdir)" > $@
53
54
55 # The SED and AWK filters in this rule, are to work-around some nasty bugs in makeinfo version 4.13, which produces
56 # broken docbook xml.  These workarounds are rather horrible and must be removed asap.
57 $(srcdir)/doc/pspp.xml: doc/pspp.texinfo $(doc_pspp_TEXINFOS)
58         @$(MKDIR_P)  doc
59         $(MAKEINFO) $(AM_MAKEINFOFLAGS) --docbook -I $(top_srcdir) \
60                 $(top_srcdir)/doc/pspp.texinfo -o - \
61                 | $(SED) -e 's/Time-&-Date/Time-\&-Date/g' \
62                 -e 's/“/\“/g' \
63                 -e 's/”/\”/g' \
64                 -e 's/‘/\‘/g' \
65                 -e 's/’/\’/g' \
66                 -e 's/—/\—/g' \
67                 -e 's/–/\′/g' \
68                 -e 's/é/\é/g' \
69                 -e 's/©/\©/g' \
70                 -e 's/−/\−/g' \
71                 -e 's/…/\…/g' \
72                 -e 's/•/\ߦ/g' \
73                 -e 's/././g' \
74                 -e 's%\(<figure [^>]*\)>%\1/>%g' \
75          | $(AWK) '/<para>.*<table.*>.*<\/para>/{x=sub("</para>",""); print; s=1;next}/<\/table>/{print; if (s==1) print "</para>"; s=0; next}1' \
76         > $@
77         $(XMLLINT) --output /dev/null $@ || ( $(RM) $@ ; false)
78
79 docbookdir = $(docdir)
80 dist_docbook_DATA = doc/pspp.xml
81  
82
83 EXTRA_DIST += doc/OChangeLog
84 CLEANFILES += pspp-dev.dvi $(docbook_DATA)
85
86 doc: $(INFO_DEPS) $(DVIS) $(PDFS) $(PSS) $(HTMLS) $(dist_docbook_DATA)
87 .PHONY: doc