aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
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