summaryrefslogtreecommitdiff
path: root/test/perl
diff options
context:
space:
mode:
authorRoger Meier <roger@apache.org>2012-01-10 21:30:02 +0000
committerRoger Meier <roger@apache.org>2012-01-10 21:30:02 +0000
commit01b568cb5dd144470aee2cc638cc935792363b1c (patch)
tree4824fe7ee478d82b2acc2b7e85e880084976b1a2 /test/perl
parent4d5157da020eb1965d0c36f565f1a2e228159e1e (diff)
downloadthrift-01b568cb5dd144470aee2cc638cc935792363b1c.tar.gz
THRIFT-847 Test Framework harmonization across all languages
perl fixes: - generate Makfile for perl tests - add inc path to test git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1229745 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/perl')
-rw-r--r--test/perl/Makefile.am (renamed from test/perl/Makefile)13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/perl/Makefile b/test/perl/Makefile.am
index e2d81d452..291106b5c 100644
--- a/test/perl/Makefile
+++ b/test/perl/Makefile.am
@@ -17,14 +17,13 @@
# under the License.
#
-# Default target is everything
-target: all
+THRIFT = $(top_srcdir)/compiler/cpp/thrift
-# Tools
-THRIFT = ../../compiler/cpp/thrift
-
-all: ../ThriftTest.thrift
+stubs: ../ThriftTest.thrift
$(THRIFT) --gen perl ../ThriftTest.thrift
-clean:
+check: stubs
+
+clean-local:
$(RM) -r gen-perl
+