mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 02:45:22 +00:00
8cee47cf5e
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@741832 13f79535-47bb-0310-9956-ffa450edef68
30 lines
829 B
Makefile
30 lines
829 B
Makefile
THRIFT = $(top_srcdir)/compiler/cpp/thrift
|
|
|
|
py_unit_tests = \
|
|
SerializationTest.py \
|
|
TestEof.py \
|
|
TestSyntax.py \
|
|
RunClientServer.py
|
|
|
|
thrift_gen = \
|
|
gen-py/ThriftTest/__init__.py \
|
|
gen-py/DebugProtoTest/__init__.py
|
|
|
|
helper_scripts= \
|
|
TestClient.py \
|
|
TestServer.py
|
|
|
|
check_SCRIPTS= \
|
|
$(thrift_gen) \
|
|
$(py_unit_tests) \
|
|
$(helper_scripts)
|
|
|
|
TESTS= $(py_unit_tests)
|
|
|
|
|
|
gen-py/%/__init__.py: ../%.thrift
|
|
$(THRIFT) --gen py $<
|
|
|
|
clean-local:
|
|
$(RM) -r gen-py
|