diff options
author | ng0 <ng0@infotropique.org> | 2017-09-30 10:38:49 +0000 |
---|---|---|
committer | ng0 <ng0@infotropique.org> | 2017-09-30 10:38:49 +0000 |
commit | 90a2295c1004f57668b491908d304a986cc87d52 (patch) | |
tree | 02279ffe562adc56bc771cf65450070819973870 /Makefile.am | |
parent | dc629f387ee54f67286ae22fe73b8f4498e0e8d6 (diff) |
build-process: pass '--enable-documentation' to ONLY build the documentation.
This obviously defaults to NO.
Furthermore add DISTCLEANFILES to 'doc/Makefile.am'.
Adjust contrib/packages/guix/gnunet-doc.scm to it.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 567e7b5ff..0466fcc10 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,11 @@ # This Makefile.am is in the public domain AM_CPPFLAGS = -I$(top_srcdir)/src/include -SUBDIRS = doc m4 src po pkgconfig + +if DOC_ONLY + SUBDIRS = doc m4 po pkgconfig +else + SUBDIRS = doc m4 src po pkgconfig +endif if !TALER_ONLY SUBDIRS += contrib |