David Reiss | 1873fed | 2010-05-04 16:32:33 +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 | |
| 20 | phpdir = $(PHP_PREFIX) |
Bryan Duxbury | 6a68187 | 2010-05-02 22:39:31 +0000 | [diff] [blame] | 21 | php_DATA = \ |
| 22 | src/autoload.php \ |
| 23 | src/Thrift.php |
| 24 | |
David Reiss | 1873fed | 2010-05-04 16:32:33 +0000 | [diff] [blame] | 25 | phpextdir = $(phpdir)/ext/thrift_protocol |
Bryan Duxbury | 6a68187 | 2010-05-02 22:39:31 +0000 | [diff] [blame] | 26 | phpext_DATA = \ |
David Reiss | 1873fed | 2010-05-04 16:32:33 +0000 | [diff] [blame] | 27 | src/ext/thrift_protocol/config.m4 \ |
| 28 | src/ext/thrift_protocol/php_thrift_protocol.cpp \ |
Bryan Duxbury | 6a68187 | 2010-05-02 22:39:31 +0000 | [diff] [blame] | 29 | src/ext/thrift_protocol/php_thrift_protocol.h |
| 30 | |
David Reiss | 1873fed | 2010-05-04 16:32:33 +0000 | [diff] [blame] | 31 | phpprotocoldir = $(phpdir)/protocol |
Bryan Duxbury | 6a68187 | 2010-05-02 22:39:31 +0000 | [diff] [blame] | 32 | phpprotocol_DATA = \ |
David Reiss | 1873fed | 2010-05-04 16:32:33 +0000 | [diff] [blame] | 33 | src/protocol/TBinaryProtocol.php \ |
Bryan Duxbury | 6a68187 | 2010-05-02 22:39:31 +0000 | [diff] [blame] | 34 | src/protocol/TProtocol.php |
| 35 | |
David Reiss | 1873fed | 2010-05-04 16:32:33 +0000 | [diff] [blame] | 36 | phptransportdir = $(phpdir)/transport |
Bryan Duxbury | 6a68187 | 2010-05-02 22:39:31 +0000 | [diff] [blame] | 37 | phptransport_DATA = \ |
David Reiss | 1873fed | 2010-05-04 16:32:33 +0000 | [diff] [blame] | 38 | src/transport/TBufferedTransport.php \ |
| 39 | src/transport/TFramedTransport.php \ |
| 40 | src/transport/THttpClient.php \ |
| 41 | src/transport/TMemoryBuffer.php \ |
| 42 | src/transport/TNullTransport.php \ |
| 43 | src/transport/TPhpStream.php \ |
| 44 | src/transport/TSocket.php \ |
| 45 | src/transport/TSocketPool.php \ |
Bryan Duxbury | 6a68187 | 2010-05-02 22:39:31 +0000 | [diff] [blame] | 46 | src/transport/TTransport.php |
| 47 | |
| 48 | MAINTAINERCLEANFILES = Makefile Makefile.in |