aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorng0 <ng0@infotropique.org>2017-09-30 10:38:49 +0000
committerng0 <ng0@infotropique.org>2017-09-30 10:38:49 +0000
commit90a2295c1004f57668b491908d304a986cc87d52 (patch)
tree02279ffe562adc56bc771cf65450070819973870 /Makefile.am
parentdc629f387ee54f67286ae22fe73b8f4498e0e8d6 (diff)
downloadgnunet-90a2295c1004f57668b491908d304a986cc87d52.tar.gz
gnunet-90a2295c1004f57668b491908d304a986cc87d52.zip
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.am7
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 @@
1# This Makefile.am is in the public domain 1# This Makefile.am is in the public domain
2AM_CPPFLAGS = -I$(top_srcdir)/src/include 2AM_CPPFLAGS = -I$(top_srcdir)/src/include
3SUBDIRS = doc m4 src po pkgconfig 3
4if DOC_ONLY
5 SUBDIRS = doc m4 po pkgconfig
6else
7 SUBDIRS = doc m4 src po pkgconfig
8endif
4 9
5if !TALER_ONLY 10if !TALER_ONLY
6 SUBDIRS += contrib 11 SUBDIRS += contrib