aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-04-01 14:06:27 +0000
committerng0 <ng0@n0.is>2019-04-01 14:06:27 +0000
commit8e50f39a2c1ba03011bd1e5c51d0721f220e2e7a (patch)
treea5fdc478c3350c8945fb77efa41ccf04823522df /Makefile.am
parent1238b1f27382971a5ad0ad07ea0ed30b6d3aad17 (diff)
downloadgnunet-8e50f39a2c1ba03011bd1e5c51d0721f220e2e7a.tar.gz
gnunet-8e50f39a2c1ba03011bd1e5c51d0721f220e2e7a.zip
add ability to build manpages independent from other documentation choices
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index fd18d7c3c..f54ff203f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,13 +1,21 @@
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
4# only documentation (ALL of the documentation)
4if DOCUMENTATION_ONLY 5if DOCUMENTATION_ONLY
5 SUBDIRS = doc 6 SUBDIRS = doc
6else 7else
7 SUBDIRS = m4 src po pkgconfig 8 SUBDIRS = m4 src po pkgconfig
9endif
10
11# documentation on / off switch (affects all of the documentation)
8if DOCUMENTATION 12if DOCUMENTATION
9 SUBDIRS += doc 13 SUBDIRS += doc
10endif 14endif
15
16# only manpages, needs "doc" subdir
17if INCLUDE_MANPAGES
18 SUBDIRS += doc
11endif 19endif
12 20
13if !TALER_ONLY 21if !TALER_ONLY