summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorRoger Meier <roger@apache.org>2014-01-26 11:51:26 +0100
committerRoger Meier <roger@apache.org>2014-01-26 11:51:26 +0100
commitc88d58195246069ea05106855aa567e2db32fe69 (patch)
treee0c1a015cc068e3b1eb94eea61605a34eb0529d6 /Makefile.am
parent8909cbdf819a059874ffc22ca6c04a06211321f6 (diff)
downloadthrift-c88d58195246069ea05106855aa567e2db32fe69.tar.gz
THRIFT-2317 add disable option to exclude tutorial from build
Diffstat (limited to 'Makefile.am')
-rwxr-xr-xMakefile.am4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index af25ad37e..903de75db 100755
--- a/Makefile.am
+++ b/Makefile.am
@@ -19,13 +19,15 @@
ACLOCAL_AMFLAGS = -I ./aclocal
-SUBDIRS = compiler/cpp lib tutorial
+SUBDIRS = compiler/cpp lib
if WITH_TESTS
SUBDIRS += test
endif
+if WITH_TUTORIAL
SUBDIRS += tutorial
+endif
dist-hook:
find $(distdir) -type f \( -iname ".DS_Store" -or -iname "._*" -or -iname ".gitignore" \) | xargs rm -rf