blob: 0d159a2f889ea2b12f48c2661d8507bade1cf750 [file] [log] [blame]
David Reiss9ff3b9d2008-02-15 01:10:23 +00001THRIFT = $(top_srcdir)/compiler/cpp/thrift
2
3py_unit_tests = \
4 SerializationTest.py \
5 TestEof.py \
6 RunClientServer.py
7
8thrift_gen = \
9 gen-py/ThriftTest/__init__.py
10
11helper_scripts= \
12 TestClient.py \
13 TestServer.py
14
15check_SCRIPTS= \
16 $(thrift_gen) \
17 $(py_unit_tests) \
18 $(helper_scripts)
19
20TESTS= $(py_unit_tests)
21
22
23gen-py/ThriftTest/__init__.py: ../ThriftTest.thrift
24 $(THRIFT) -py $<
25
26clean-local:
27 -rm -rf gen-py