pivot table procedure conceptually works
[pspp] / doc / automake.mk
1 ## Process this file with automake to produce Makefile.in  -*- makefile -*-
2
3 info_TEXINFOS = doc/pspp.texi doc/pspp-dev.texi
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/pspp-convert.texi \
22         doc/ni.texi \
23         doc/not-implemented.texi \
24         doc/statistics.texi \
25         doc/transformation.texi \
26         doc/tutorial.texi \
27         doc/tut.texi \
28         doc/regression.texi \
29         doc/utilities.texi \
30         doc/variables.texi \
31         doc/fdl.texi 
32
33 doc_pspp_dev_TEXINFOS = doc/version-dev.texi \
34         doc/dev/intro.texi \
35         doc/dev/concepts.texi \
36         doc/dev/syntax.texi \
37         doc/dev/data.texi \
38         doc/dev/i18n.texi \
39         doc/dev/output.texi \
40         doc/dev/system-file-format.texi \
41         doc/dev/pc+-file-format.texi \
42         doc/dev/portable-file-format.texi \
43         doc/dev/q2c.texi
44
45 dist_man_MANS += doc/pspp.1 \
46                  doc/psppire.1
47
48 EXTRA_DIST += doc/get-commands.pl
49
50 $(srcdir)/doc/ni.texi: $(top_srcdir)/src/language/command.def doc/get-commands.pl
51         @$(MKDIR_P)  doc
52         $(AM_V_GEN)$(PERL) $(top_srcdir)/doc/get-commands.pl $(top_srcdir)/src/language/command.def > $@
53
54 $(srcdir)/doc/tut.texi:
55         @$(MKDIR_P) doc
56         $(AM_V_GEN)echo "@set example-dir $(examplesdir)" > $@
57
58
59 # The SED and AWK filters in this rule, are to work-around some nasty bugs in makeinfo version 4.13, which produces
60 # broken docbook xml.  These workarounds are rather horrible and must be removed asap.
61 $(srcdir)/doc/pspp.xml: doc/pspp.texi $(doc_pspp_TEXINFOS)
62         @$(MKDIR_P)  doc
63         $(AM_V_GEN)$(MAKEINFO) $(AM_MAKEINFOFLAGS) --docbook -I $(top_srcdir) \
64                 $(top_srcdir)/doc/pspp.texi -o - \
65                 | $(SED) -e 's/Time-&-Date/Time-\&-Date/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/−/\−/g' \
75                 -e 's/…/\…/g' \
76                 -e 's/•/\ߦ/g' \
77                 -e 's/././g' \
78                 -e 's%\(<figure [^>]*\)>%\1/>%g' \
79          | $(AWK) '/<para>.*<table.*>.*<\/para>/{x=sub("</para>",""); print; s=1;next}/<\/table>/{print; if (s==1) print "</para>"; s=0; next}1' \
80         > $@
81         $(AM_V_at)$(XMLLINT) --output /dev/null $@ || ( $(RM) $@ ; false)
82
83 docbookdir = $(docdir)
84 dist_docbook_DATA = doc/pspp.xml
85  
86
87 CLEANFILES += pspp-dev.dvi $(docbook_DATA)
88
89 doc: $(INFO_DEPS) $(DVIS) $(PDFS) $(PSS) $(HTMLS) $(dist_docbook_DATA)
90 .PHONY: doc