summaryrefslogtreecommitdiff
path: root/tutorial
diff options
context:
space:
mode:
authorRoger Meier <roger@apache.org>2014-10-22 14:09:43 +0200
committerRoger Meier <roger@apache.org>2014-10-22 14:09:43 +0200
commit81a1f996bc055c6833c829beaf9e5549db2a774d (patch)
treee5ffeeb97432f80d7b81eb185cc806782590d1d8 /tutorial
parentb006a5078339d125e62919bcc76956c9849000af (diff)
downloadthrift-81a1f996bc055c6833c829beaf9e5549db2a774d.tar.gz
THRIFT-2602 fix missing dist files
- add automake 1.13 dependency to configure.ac and doc - use serial-tests instead of .NOTPARALLEL (introduced by THRIFT-1829) Patch: Roger Meier
Diffstat (limited to 'tutorial')
-rwxr-xr-xtutorial/c_glib/Makefile.am5
-rwxr-xr-xtutorial/cpp/Makefile.am3
2 files changed, 4 insertions, 4 deletions
diff --git a/tutorial/c_glib/Makefile.am b/tutorial/c_glib/Makefile.am
index 24075dd49..377298488 100755
--- a/tutorial/c_glib/Makefile.am
+++ b/tutorial/c_glib/Makefile.am
@@ -16,15 +16,14 @@
# specific language governing permissions and limitations
# under the License.
#
+AUTOMAKE_OPTIONS = subdir-objects serial-tests
-AM_CFLAGS = -g -Wall -Wextra $(GLIB_CFLAGS) $(GOBJECT_CFLAGS) @GCOV_CFLAGS@
+AM_CFLAGS = -g -Wall -Wextra -pedantic $(GLIB_CFLAGS) $(GOBJECT_CFLAGS) @GCOV_CFLAGS@
AM_CPPFLAGS = -I$(top_srcdir)/lib/c_glib/src -Igen-c_glib
AM_LDFLAGS = $(GLIB_LIBS) $(GOBJECT_LIBS) @GCOV_LDFLAGS@
THRIFT = $(top_builddir)/compiler/cpp/thrift
-
-.NOTPARALLEL:
noinst_LTLIBRARIES = \
libtutorialgencglib.la
diff --git a/tutorial/cpp/Makefile.am b/tutorial/cpp/Makefile.am
index bcc765446..e895b03d9 100755
--- a/tutorial/cpp/Makefile.am
+++ b/tutorial/cpp/Makefile.am
@@ -16,7 +16,8 @@
# specific language governing permissions and limitations
# under the License.
#
-.NOTPARALLEL:
+AUTOMAKE_OPTIONS = subdir-objects serial-tests
+
noinst_LTLIBRARIES = libtutorialgencpp.la
nodist_libtutorialgencpp_la_SOURCES = \
gen-cpp/Calculator.cpp \