mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 02:45:22 +00:00
2ca456a8ae
Summary: make-generic is some sort of internal undocumented thing. make-local is what is supposed to be used for this stuff. Also use $(RM) instead of "rm -f". Reviewed By: marc Test Plan: make clean git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665498 13f79535-47bb-0310-9956-ffa450edef68
28 lines
738 B
Makefile
28 lines
738 B
Makefile
THRIFT = $(top_srcdir)/compiler/cpp/thrift
|
|
|
|
py_unit_tests = \
|
|
SerializationTest.py \
|
|
TestEof.py \
|
|
RunClientServer.py
|
|
|
|
thrift_gen = \
|
|
gen-py/ThriftTest/__init__.py
|
|
|
|
helper_scripts= \
|
|
TestClient.py \
|
|
TestServer.py
|
|
|
|
check_SCRIPTS= \
|
|
$(thrift_gen) \
|
|
$(py_unit_tests) \
|
|
$(helper_scripts)
|
|
|
|
TESTS= $(py_unit_tests)
|
|
|
|
|
|
gen-py/ThriftTest/__init__.py: ../ThriftTest.thrift
|
|
$(THRIFT) -py $<
|
|
|
|
clean-local:
|
|
$(RM) -r gen-py
|