From ecad620e1c50f7531cb9e22891213de9eb33f32c Mon Sep 17 00:00:00 2001 From: ng0 Date: Thu, 7 Sep 2017 19:53:29 +0000 Subject: [PATCH] doc: add rule with noisy build. --- .../guix/packages/gnunet/packages/gnunet.scm | 2 +- doc/Makefile.am | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) 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 -- 2.25.1