X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2Fautomake.mk;h=fa6e8b03df62305ee63049966df28d44aa9f7360;hb=371a340b7b71f9dcd87b8df1cca265d256a471af;hp=7c19acc01a52c4d5a85b40570b72d9ecf44524ba;hpb=1d2780996f3f615c2ea19ddfc1c9e1592fa64b70;p=pspp-builds.git diff --git a/doc/automake.mk b/doc/automake.mk index 7c19acc0..fa6e8b03 100644 --- a/doc/automake.mk +++ b/doc/automake.mk @@ -1,13 +1,12 @@ ## Process this file with automake to produce Makefile.in -*- makefile -*- -info_TEXINFOS = doc/pspp.texinfo +info_TEXINFOS = doc/pspp.texinfo doc/pspp-dev.texinfo doc_pspp_TEXINFOS = doc/version.texi \ doc/bugs.texi \ doc/command-index.texi \ doc/concept-index.texi \ doc/configuring.texi \ - doc/data-file-format.texi \ doc/data-io.texi \ doc/data-selection.texi \ doc/expressions.texi \ @@ -19,9 +18,8 @@ doc_pspp_TEXINFOS = doc/version.texi \ doc/invoking.texi \ doc/language.texi \ doc/license.texi \ + doc/ni.texi \ doc/not-implemented.texi \ - doc/portable-file-format.texi \ - doc/q2c.texi \ doc/statistics.texi \ doc/transformation.texi \ doc/regression.texi \ @@ -29,22 +27,38 @@ doc_pspp_TEXINFOS = doc/version.texi \ doc/variables.texi \ doc/fdl.texi -nodist_doc_pspp_TEXINFOS = doc/ni.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/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 \ - $(doc_pspp_TEXINFOS) - -# Kludge to get around automake deficiency. -am__TEXINFO_TEX_DIR=./doc + doc/get-commands.pl doc/ni.texi: $(top_srcdir)/src/language/command.def doc/get-commands.pl - @$(top_srcdir)/mkinstalldirs doc + @$(MKDIR_P) doc @PERL@ $(top_srcdir)/doc/get-commands.pl $(top_srcdir)/src/language/command.def > $@ +# It seems that recent versions of yelp, upon which the gui relies to display the reference +# manual, are broken. It only works on compressed info files. So we must compress them. +if WITHGUI +YELP_CHECK = yelp-check +else +YELP_CHECK = +endif +install-data-hook:: $(YELP_CHECK) + for ifile in $(DESTDIR)$(infodir)/pspp.info-[0-9] \ + $(DESTDIR)$(infodir)/pspp.info ; do \ + gzip -f $$ifile ; \ + done -$(INFO_DEPS): doc/ni.texi -$(HTML_DEPS): doc/ni.texi +uninstall-hook:: + rm -f $(DESTDIR)$(infodir)/pspp.info-[0-9].gz + rm -f $(DESTDIR)$(infodir)/pspp.info.gz -CLEANFILES += doc/ni.texi +EXTRA_DIST += doc/OChangeLog