aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorNils Gillmann <ng0@n0.is>2018-03-31 11:07:50 +0000
committerNils Gillmann <ng0@n0.is>2018-03-31 11:07:50 +0000
commitb6cf770ab68030d2ba6d7c2c9ed0a5655de4f1d6 (patch)
treeb5e4e666e354c83844e20865958b986aac662f91 /Makefile.am
parentc60051643fe8bc3e6ec4dcc6dc28d1fc03bfe740 (diff)
downloadgnunet-b6cf770ab68030d2ba6d7c2c9ed0a5655de4f1d6.tar.gz
gnunet-b6cf770ab68030d2ba6d7c2c9ed0a5655de4f1d6.zip
Add condition to toplevel Makefile to support building just the documentation. Cornercase for special occasions.
Signed-off-by: Nils Gillmann <ng0@n0.is>
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index 6864b4956..45a693ac9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,16 +1,16 @@
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
3 3
4SUBDIRS = doc m4 src po pkgconfig 4if DOCUMENTATION_ONLY
5 SUBDIRS = doc
6else
7 SUBDIRS = doc m4 src po pkgconfig
8endif
5 9
6if !TALER_ONLY 10if !TALER_ONLY
7 SUBDIRS += contrib 11 SUBDIRS += contrib
8endif 12endif
9 13
10if DOCUMENTATION_ONLY
11 SUBDIRS = doc
12endif
13
14EXTRA_DIST = \ 14EXTRA_DIST = \
15 ABOUT-NLS \ 15 ABOUT-NLS \
16 config.rpath \ 16 config.rpath \