mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
6f5e2cb3ea
Reviewed By: makefile git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664950 13f79535-47bb-0310-9956-ffa450edef68
19 lines
274 B
Makefile
19 lines
274 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: stubs
|
|
|
|
stubs: ../ThriftTest.thrift
|
|
$(THRIFT) --py ../ThriftTest.thrift
|
|
|
|
clean:
|
|
rm -fr gen-py
|