X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2Fautomake.mk;h=976b5845078b62ac76769b071dca2cc1506c80b0;hb=33cdbdf7e095370cf04240eed21344205a487191;hp=3445379a1ca756e00e62751623ab4759cdf12dc0;hpb=625011da0d7cfcc4536fd95bad7f0da7c7750b81;p=pspp diff --git a/doc/automake.mk b/doc/automake.mk index 3445379a1c..976b584507 100644 --- a/doc/automake.mk +++ b/doc/automake.mk @@ -1,16 +1,32 @@ +## PSPP - a program for statistical analysis. +## Copyright (C) 2019 Free Software Foundation, Inc. +## +## This program is free software: you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation, either version 3 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program. If not, see . + ## Process this file with automake to produce Makefile.in -*- makefile -*- -info_TEXINFOS = doc/pspp.texinfo doc/pspp-dev.texinfo +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/configuring.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 \ @@ -18,48 +34,64 @@ doc_pspp_TEXINFOS = doc/version.texi \ doc/invoking.texi \ doc/language.texi \ doc/license.texi \ + doc/pspp-convert.texi \ + doc/pspp-output.texi \ + doc/pspp-dump-sav.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/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/pc+-file-format.texi \ doc/dev/portable-file-format.texi \ + doc/dev/spv-file-format.texi \ + doc/dev/encrypted-file-wrappers.texi \ doc/dev/q2c.texi -EXTRA_DIST += doc/pspp.man \ - doc/get-commands.pl +dist_man_MANS += doc/pspp.1 \ + doc/psppire.1 + +EXTRA_DIST += doc/get-commands.pl \ + doc/help-pages-list \ + doc/prepdoc.sh -doc/ni.texi: $(top_srcdir)/src/language/command.def 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 > $@ + $(AM_V_GEN)$(PERL) $(top_srcdir)/doc/get-commands.pl $(top_srcdir)/src/language/command.def > $@ + +$(srcdir)/doc/tut.texi: + @$(MKDIR_P) doc + $(AM_V_GEN)echo "@set example-dir $(examplesdir)" > $@ + -# 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 +$(srcdir)/doc/pspp.xml: doc/pspp.texi $(doc_pspp_TEXINFOS) $(top_srcdir)/doc/help-pages-list +if BROKEN_DOCBOOK_XML + touch $@ else -YELP_CHECK = + @$(MKDIR_P) doc + $(AM_V_GEN)$(MAKEINFO) $(AM_MAKEINFOFLAGS) --docbook -I $(top_srcdir) \ + $< -o $@ endif -install-data-hook:: $(YELP_CHECK) - for ifile in $(DESTDIR)$(infodir)/pspp.info-[0-9] \ - $(DESTDIR)$(infodir)/pspp.info ; do \ - gzip -f $$ifile ; \ - done -uninstall-hook:: - rm -f $(DESTDIR)$(infodir)/pspp.info-[0-9].gz - rm -f $(DESTDIR)$(infodir)/pspp.info.gz +docbookdir = $(docdir) +dist_docbook_DATA = doc/pspp.xml + + +CLEANFILES += pspp-dev.dvi $(docbook_DATA) -EXTRA_DIST += doc/OChangeLog -CLEANFILES += pspp-dev.dvi +doc: $(INFO_DEPS) $(DVIS) $(PDFS) $(PSS) $(HTMLS) $(dist_docbook_DATA) +PHONY += doc