2008-02-15 01:10:23 +00:00
|
|
|
THRIFT = $(top_srcdir)/compiler/cpp/thrift
|
|
|
|
|
|
|
|
py_unit_tests = \
|
|
|
|
SerializationTest.py \
|
|
|
|
TestEof.py \
|
2009-02-07 02:37:05 +00:00
|
|
|
TestSyntax.py \
|
2008-02-15 01:10:23 +00:00
|
|
|
RunClientServer.py
|
|
|
|
|
|
|
|
thrift_gen = \
|
2009-02-07 02:37:05 +00:00
|
|
|
gen-py/ThriftTest/__init__.py \
|
|
|
|
gen-py/DebugProtoTest/__init__.py
|
2008-02-15 01:10:23 +00:00
|
|
|
|
|
|
|
helper_scripts= \
|
|
|
|
TestClient.py \
|
|
|
|
TestServer.py
|
|
|
|
|
|
|
|
check_SCRIPTS= \
|
|
|
|
$(thrift_gen) \
|
|
|
|
$(py_unit_tests) \
|
|
|
|
$(helper_scripts)
|
|
|
|
|
|
|
|
TESTS= $(py_unit_tests)
|
|
|
|
|
|
|
|
|
2009-02-07 02:37:05 +00:00
|
|
|
gen-py/%/__init__.py: ../%.thrift
|
2008-12-02 02:11:13 +00:00
|
|
|
$(THRIFT) --gen py $<
|
2008-02-15 01:10:23 +00:00
|
|
|
|
|
|
|
clean-local:
|
2008-02-24 16:42:18 +00:00
|
|
|
$(RM) -r gen-py
|