blob: 2317ef61a9968d71189722c7a3dd138ce0ccde22 [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +00001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
David Reiss9ff3b9d2008-02-15 01:10:23 +000020THRIFT = $(top_srcdir)/compiler/cpp/thrift
21
Roger Meierf4eec7a2011-09-11 18:16:21 +000022py_unit_tests = RunClientServer.py
David Reiss9ff3b9d2008-02-15 01:10:23 +000023
24thrift_gen = \
David Reiss8cee47c2009-02-07 02:37:05 +000025 gen-py/ThriftTest/__init__.py \
Roger Meierf4eec7a2011-09-11 18:16:21 +000026 gen-py/DebugProtoTest/__init__.py \
27 gen-py-default/ThriftTest/__init__.py \
28 gen-py-default/DebugProtoTest/__init__.py \
29 gen-py-slots/ThriftTest/__init__.py \
30 gen-py-slots/DebugProtoTest/__init__.py \
31 gen-py-newstyle/ThriftTest/__init__.py \
32 gen-py-newstyle/DebugProtoTest/__init__.py \
33 gen-py-newstyleslots/ThriftTest/__init__.py \
34 gen-py-newstyleslots/DebugProtoTest/__init__.py \
35 gen-py-dynamic/ThriftTest/__init__.py \
36 gen-py-dynamic/DebugProtoTest/__init__.py \
37 gen-py-dynamicslots/ThriftTest/__init__.py \
38 gen-py-dynamicslots/DebugProtoTest/__init__.py
David Reiss9ff3b9d2008-02-15 01:10:23 +000039
40helper_scripts= \
41 TestClient.py \
42 TestServer.py
43
44check_SCRIPTS= \
Roger Meierf4eec7a2011-09-11 18:16:21 +000045 $(thrift_gen) \
David Reiss9ff3b9d2008-02-15 01:10:23 +000046 $(py_unit_tests) \
47 $(helper_scripts)
48
49TESTS= $(py_unit_tests)
50
51
David Reiss8cee47c2009-02-07 02:37:05 +000052gen-py/%/__init__.py: ../%.thrift
Roger Meierf4eec7a2011-09-11 18:16:21 +000053 $(THRIFT) --gen py $<
54 test -d gen-py-default || mkdir gen-py-default
55 $(THRIFT) --gen py -out gen-py-default $<
56
57gen-py-slots/%/__init__.py: ../%.thrift
58 test -d gen-py-slots || mkdir gen-py-slots
59 $(THRIFT) --gen py:slots -out gen-py-slots $<
60
61gen-py-newstyle/%/__init__.py: ../%.thrift
62 test -d gen-py-newstyle || mkdir gen-py-newstyle
63 $(THRIFT) --gen py:new_style -out gen-py-newstyle $<
64
65gen-py-newstyleslots/%/__init__.py: ../%.thrift
66 test -d gen-py-newstyleslots || mkdir gen-py-newstyleslots
67 $(THRIFT) --gen py:new_style,slots -out gen-py-newstyleslots $<
68
69gen-py-dynamic/%/__init__.py: ../%.thrift
70 test -d gen-py-dynamic || mkdir gen-py-dynamic
71 $(THRIFT) --gen py:dynamic -out gen-py-dynamic $<
72
73gen-py-dynamicslots/%/__init__.py: ../%.thrift
74 test -d gen-py-dynamicslots || mkdir gen-py-dynamicslots
75 $(THRIFT) --gen py:dynamic,slots -out gen-py-dynamicslots $<
David Reiss9ff3b9d2008-02-15 01:10:23 +000076
77clean-local:
Roger Meierf4eec7a2011-09-11 18:16:21 +000078 $(RM) -r gen-py gen-py-slots gen-py-default gen-py-newstyle gen-py-newstyleslots gen-py-dynamic gen-py-dynamicslots