mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 02:45:22 +00:00
41687fc6cf
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@728863 13f79535-47bb-0310-9956-ffa450edef68
17 lines
269 B
Makefile
17 lines
269 B
Makefile
# Makefile for Thrift test project.
|
|
#
|
|
# Author:
|
|
# Mark Slee <mcslee@facebook.com>
|
|
|
|
# Default target is everything
|
|
target: all
|
|
|
|
# Tools
|
|
THRIFT = ../../compiler/cpp/thrift
|
|
|
|
all: ../ThriftTest.thrift
|
|
$(THRIFT) --gen perl ../ThriftTest.thrift
|
|
|
|
clean:
|
|
$(RM) -r gen-perl
|