From: ng0 Date: Thu, 7 Sep 2017 19:53:29 +0000 (+0000) Subject: doc: add rule with noisy build. X-Git-Tag: gnunet-0.11.0rc0~105^2~13 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ecad620e1c50f7531cb9e22891213de9eb33f32c;p=oweals%2Fgnunet.git doc: add rule with noisy build. --- diff --git a/contrib/packages/guix/packages/gnunet/packages/gnunet.scm b/contrib/packages/guix/packages/gnunet/packages/gnunet.scm index 7de216f1d..ac417921b 100644 --- a/contrib/packages/guix/packages/gnunet/packages/gnunet.scm +++ b/contrib/packages/guix/packages/gnunet/packages/gnunet.scm @@ -220,7 +220,7 @@ (replace 'build (lambda _ (chdir "doc") - (zero? (system* "make" "doc-all")))) + (zero? (system* "make" "doc-all-give-me-the-noise")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) diff --git a/doc/Makefile.am b/doc/Makefile.am index 72c073496..3e9790a8a 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -105,4 +105,21 @@ doc-clean: doc-all: doc-pdf doc-html doc-info doc-pdf-tutorial doc-html-tutorial doc-info-tutorial +doc-pdf-noise: version.texi + @makeinfo --pdf gnunet.texi +doc-pdf-tutorial-noise: version.texi + @makeinfo --pdf gnunet-c-tutorial.texi + +doc-html-noise: version.texi + @makeinfo --html gnunet.texi +doc-html-tutorial-noise: version.texi + @makeinfo --html gnunet-c-tutorial.texi + +doc-info-noise: version.texi + @makeinfo --no-split gnunet.texi +doc-info-tutorial-noise: version.texi + @makeinfo --no-split gnunet-c-tutorial.texi + +doc-all-give-me-the-noise: doc-pdf-noise doc-html-noise doc-info-noise doc-pdf-tutorial-noise doc-html-tutorial-noise doc-info-tutorial-noise + .PHONY: version.texi