summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-06-23 09:20:03 +0200
committerSebastian Dröge <sebastian@centricular.com>2014-06-23 09:28:15 +0200
commita9ebfeae114b9f211f9b97094e6fa4aab7ba9e1e (patch)
tree59cf6d3c82a47728fb62fa46a99a156f730e2ab4 /testsuite
parent988914384acdf30eab22226d79de3541e7e6f02d (diff)
build: Modernize autotools build system
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/orcc/Makefile.am10
1 files changed, 7 insertions, 3 deletions
diff --git a/testsuite/orcc/Makefile.am b/testsuite/orcc/Makefile.am
index 41134fc..2ba0ac0 100644
--- a/testsuite/orcc/Makefile.am
+++ b/testsuite/orcc/Makefile.am
@@ -18,13 +18,17 @@ LIBS = $(ORC_LIBS) $(top_builddir)/orc-test/liborc-test-@ORC_MAJORMINOR@.la
CLEANFILES = testorc.c testorc.h orc_test.c
+orcc_v_gen = $(orcc_v_gen_$(V))
+orcc_v_gen_ = $(orcc_v_gen_$(AM_DEFAULT_VERBOSITY))
+orcc_v_gen_0 = @echo " ORCC $@";
+
testorc.h: $(srcdir)/../test.orc
- $(top_builddir)/tools/orcc$(EXEEXT) --include stdint.h --header -o testorc.h $<
+ $(orcc_v_gen)$(top_builddir)/tools/orcc$(EXEEXT) --include stdint.h --header -o testorc.h $<
testorc.c: $(srcdir)/../test.orc
- $(top_builddir)/tools/orcc$(EXEEXT) --include stdint.h --implementation -o testorc.c $<
+ $(orcc_v_gen)$(top_builddir)/tools/orcc$(EXEEXT) --include stdint.h --implementation -o testorc.c $<
orc_test.c: $(srcdir)/../test.orc
- $(top_builddir)/tools/orcc$(EXEEXT) --include stdint.h --test -o orc_test.c $<
+ $(orcc_v_gen)$(top_builddir)/tools/orcc$(EXEEXT) --include stdint.h --test -o orc_test.c $<