David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 1 | # |
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 | |||||
Roger Meier | 8909cbd | 2014-01-26 11:44:27 +0100 | [diff] [blame] | 20 | SUBDIRS = |
David Reiss | 9ff3b9d | 2008-02-15 01:10:23 +0000 | [diff] [blame] | 21 | |
Roger Meier | b3c8409 | 2014-09-01 21:53:40 +0200 | [diff] [blame] | 22 | if WITH_C_GLIB |
23 | SUBDIRS += c_glib | ||||
24 | endif | ||||
25 | |||||
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 26 | if WITH_CPP |
27 | SUBDIRS += cpp | ||||
28 | endif | ||||
29 | |||||
Roger Meier | 0580d8d | 2012-01-10 22:11:36 +0000 | [diff] [blame] | 30 | if WITH_PERL |
31 | SUBDIRS += perl | ||||
32 | endif | ||||
33 | |||||
Roger Meier | b33967b | 2012-01-21 09:18:05 +0000 | [diff] [blame] | 34 | if WITH_PHP |
35 | SUBDIRS += php | ||||
36 | endif | ||||
37 | |||||
David Reiss | 82c1bab | 2008-06-11 01:16:53 +0000 | [diff] [blame] | 38 | if WITH_PYTHON |
David Reiss | 1a14091 | 2008-06-11 01:16:37 +0000 | [diff] [blame] | 39 | SUBDIRS += py |
Roger Meier | 50e4349 | 2010-10-08 17:46:06 +0000 | [diff] [blame] | 40 | SUBDIRS += py.twisted |
Chris Piro | 20c81ad | 2013-03-07 11:32:48 -0500 | [diff] [blame] | 41 | SUBDIRS += py.tornado |
David Reiss | 1a14091 | 2008-06-11 01:16:37 +0000 | [diff] [blame] | 42 | endif |
43 | |||||
David Reiss | 8d07e1d | 2008-07-11 08:04:12 +0000 | [diff] [blame] | 44 | if WITH_RUBY |
Kevin Clark | 4bd8916 | 2008-07-08 00:47:49 +0000 | [diff] [blame] | 45 | SUBDIRS += rb |
46 | endif | ||||
47 | |||||
Bryan Duxbury | c657447 | 2010-10-06 00:12:33 +0000 | [diff] [blame] | 48 | if WITH_HASKELL |
49 | SUBDIRS += hs | ||||
50 | endif | ||||
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 51 | |
Jens Geyer | f459868 | 2014-05-08 23:18:44 +0200 | [diff] [blame] | 52 | if WITH_GO |
53 | SUBDIRS += go | ||||
54 | endif | ||||
55 | |||||
alisdair sullivan | 06d0fa0 | 2014-08-05 19:54:57 -0700 | [diff] [blame] | 56 | if WITH_ERLANG |
57 | SUBDIRS += erl | ||||
58 | endif | ||||
59 | |||||
Roger Meier | 99b3672 | 2012-05-03 21:21:43 +0000 | [diff] [blame] | 60 | # |
61 | # generate html for ThriftTest.thrift | ||||
62 | # | ||||
63 | check-local: | ||||
64 | $(top_builddir)/compiler/cpp/thrift --gen html -r $(top_srcdir)/test/ThriftTest.thrift | ||||
65 | |||||
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 66 | EXTRA_DIST = \ |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 67 | keys \ |
Jake Farrell | 7c7a5e0 | 2012-10-11 00:29:11 +0000 | [diff] [blame] | 68 | test.sh \ |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 69 | test.py \ |
70 | tests.json \ | ||||
Roger Meier | b3c8409 | 2014-09-01 21:53:40 +0200 | [diff] [blame] | 71 | c_glib \ |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 72 | cpp \ |
alisdair sullivan | 06d0fa0 | 2014-08-05 19:54:57 -0700 | [diff] [blame] | 73 | erl \ |
Jake Farrell | e0c5316 | 2011-11-16 12:58:36 +0000 | [diff] [blame] | 74 | hs \ |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 75 | lua \ |
Jake Farrell | e0c5316 | 2011-11-16 12:58:36 +0000 | [diff] [blame] | 76 | ocaml \ |
77 | perl \ | ||||
78 | php \ | ||||
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 79 | py \ |
Roger Meier | 50e4349 | 2010-10-08 17:46:06 +0000 | [diff] [blame] | 80 | py.twisted \ |
Chris Piro | 20c81ad | 2013-03-07 11:32:48 -0500 | [diff] [blame] | 81 | py.tornado \ |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 82 | rb \ |
Jake Farrell | e0c5316 | 2011-11-16 12:58:36 +0000 | [diff] [blame] | 83 | threads \ |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 84 | AnnotationTest.thrift \ |
85 | BrokenConstants.thrift \ | ||||
86 | ConstantsDemo.thrift \ | ||||
87 | DebugProtoTest.thrift \ | ||||
88 | DenseLinkingTest.thrift \ | ||||
89 | DocTest.thrift \ | ||||
jfarrell | 102c600 | 2013-08-15 21:20:19 -0400 | [diff] [blame] | 90 | Include.thrift \ |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 91 | JavaBeansTest.thrift \ |
Jake Farrell | 7c7a5e0 | 2012-10-11 00:29:11 +0000 | [diff] [blame] | 92 | ManyOptionals.thrift \ |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 93 | ManyTypedefs.thrift \ |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 94 | NameConflictTest.thrift \ |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 95 | OptionalRequiredTest.thrift \ |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 96 | Recursive.thrift \ |
97 | ReuseObjects.thrift \ | ||||
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 98 | SmallTest.thrift \ |
99 | StressTest.thrift \ | ||||
100 | ThriftTest.thrift \ | ||||
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 101 | FastbinaryTest.py \ |
102 | README.md |