Fix parsing of some more .tlo files.
[pspp] / doc / automake.mk
index 801f278ce653a1fb8956a6c362b227befdd9d390..6b8c37331a3333a1eca80800c45de40d40a4b279 100644 (file)
@@ -59,6 +59,7 @@ doc_pspp_dev_TEXINFOS = doc/version-dev.texi \
        doc/dev/pc+-file-format.texi \
        doc/dev/portable-file-format.texi \
        doc/dev/spv-file-format.texi \
+       doc/dev/tlo-file-format.texi \
        doc/dev/encrypted-file-wrappers.texi \
        doc/dev/q2c.texi
 
@@ -188,30 +189,17 @@ doc/examples/tutorial7b.spv: doc/examples/tutorial7.spv $(pspp_output)
        $(convert) --commands=regression --nth-command=2 --subtypes=coefficients
 
 # Convert an output file into a text file or HTML file.
-#
-# (For HTML, use sed to include only the contents of <body>.)
 $(EXAMPLE_TXTS) $(EXAMPLE_HTML): $(pspp_output)
 .spv.txt:
        $(AM_V_GEN)utilities/pspp-output convert $< $@
 .spv.html:
-       $(AM_V_GEN)utilities/pspp-output convert $< - -O format=html \
-       | $(SED) -e '\%</body%,$$d' -e '0,/<body/d' > $@.tmp
-       $(AM_V_at)mv $@.tmp $@
+       $(AM_V_GEN)utilities/pspp-output convert $< $@ -O format=html -O bare=true
 
 # Convert a text file into a Texinfo file.
 .txt.texi:
-       $(AM_V_GEN)sed 's/@/@@/g' < $< > $@.tmp
-       $(AM_V_at)mv $@.tmp $@
-
-# Insert the link tag for the cascading style sheet.
-# But make sure these operations are idempotent.
-html-local:
-       for h in doc/pspp.html/*.html; do \
-               if grep -Fq '<link rel="stylesheet"' $$h; then continue; fi ; \
-               $(SED) -i -e '/^<\/head>/i \\\
-<link rel="stylesheet" href="pspp-manual.css">' $$h; \
-       done
+       $(AM_V_GEN)$(SED) -e 's/@/@@/g' $< > $@
 
+AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS) --css-ref=pspp-manual.css
 install-html-local: html-local
        $(MKDIR_P) $(DESTDIR)$(prefix)/share/doc/pspp/pspp.html
        $(INSTALL_DATA) ${top_srcdir}/doc/pspp-manual.css $(DESTDIR)$(prefix)/share/doc/pspp/pspp.html