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 | eaa61d8 | 2012-01-12 21:38:29 +0000 | [diff] [blame] | 20 | SUBDIRS = nodejs |
David Reiss | 9ff3b9d | 2008-02-15 01:10:23 +0000 | [diff] [blame] | 21 | |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 22 | if WITH_CPP |
| 23 | SUBDIRS += cpp |
| 24 | endif |
| 25 | |
Roger Meier | 0580d8d | 2012-01-10 22:11:36 +0000 | [diff] [blame] | 26 | if WITH_PERL |
| 27 | SUBDIRS += perl |
| 28 | endif |
| 29 | |
Roger Meier | b33967b | 2012-01-21 09:18:05 +0000 | [diff] [blame] | 30 | if WITH_PHP |
| 31 | SUBDIRS += php |
| 32 | endif |
| 33 | |
David Reiss | 82c1bab | 2008-06-11 01:16:53 +0000 | [diff] [blame] | 34 | if WITH_PYTHON |
David Reiss | 1a14091 | 2008-06-11 01:16:37 +0000 | [diff] [blame] | 35 | SUBDIRS += py |
Roger Meier | 50e4349 | 2010-10-08 17:46:06 +0000 | [diff] [blame] | 36 | SUBDIRS += py.twisted |
David Reiss | 1a14091 | 2008-06-11 01:16:37 +0000 | [diff] [blame] | 37 | endif |
| 38 | |
David Reiss | 8d07e1d | 2008-07-11 08:04:12 +0000 | [diff] [blame] | 39 | if WITH_RUBY |
Kevin Clark | 4bd8916 | 2008-07-08 00:47:49 +0000 | [diff] [blame] | 40 | SUBDIRS += rb |
| 41 | endif |
| 42 | |
Bryan Duxbury | c657447 | 2010-10-06 00:12:33 +0000 | [diff] [blame] | 43 | if WITH_HASKELL |
| 44 | SUBDIRS += hs |
| 45 | endif |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 46 | |
Roger Meier | 99b3672 | 2012-05-03 21:21:43 +0000 | [diff] [blame^] | 47 | # |
| 48 | # generate html for ThriftTest.thrift |
| 49 | # |
| 50 | check-local: |
| 51 | $(top_builddir)/compiler/cpp/thrift --gen html -r $(top_srcdir)/test/ThriftTest.thrift |
| 52 | |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 53 | EXTRA_DIST = \ |
| 54 | cpp \ |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 55 | csharp \ |
Jake Farrell | e0c5316 | 2011-11-16 12:58:36 +0000 | [diff] [blame] | 56 | erl \ |
| 57 | hs \ |
Roger Meier | eaa61d8 | 2012-01-12 21:38:29 +0000 | [diff] [blame] | 58 | nodejs \ |
Jake Farrell | e0c5316 | 2011-11-16 12:58:36 +0000 | [diff] [blame] | 59 | ocaml \ |
| 60 | perl \ |
| 61 | php \ |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 62 | py \ |
Roger Meier | 50e4349 | 2010-10-08 17:46:06 +0000 | [diff] [blame] | 63 | py.twisted \ |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 64 | rb \ |
Jake Farrell | e0c5316 | 2011-11-16 12:58:36 +0000 | [diff] [blame] | 65 | threads \ |
David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 66 | AnnotationTest.thrift \ |
| 67 | BrokenConstants.thrift \ |
| 68 | ConstantsDemo.thrift \ |
| 69 | DebugProtoTest.thrift \ |
| 70 | DenseLinkingTest.thrift \ |
| 71 | DocTest.thrift \ |
| 72 | JavaBeansTest.thrift \ |
| 73 | ManyTypedefs.thrift \ |
| 74 | OptionalRequiredTest.thrift \ |
| 75 | SmallTest.thrift \ |
| 76 | StressTest.thrift \ |
| 77 | ThriftTest.thrift \ |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 78 | FastbinaryTest.py |