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 | |
David Reiss | 1fdb592 | 2008-02-06 22:10:12 +0000 | [diff] [blame] | 20 | THRIFTCODE= \ |
David Reiss | d831a21 | 2009-02-13 03:09:52 +0000 | [diff] [blame] | 21 | src/Collections/THashSet.cs \ |
David Reiss | 80a44e7 | 2009-02-03 22:16:46 +0000 | [diff] [blame] | 22 | src/Protocol/TBase.cs \ |
Bryan Duxbury | fd32d79 | 2010-09-18 20:51:25 +0000 | [diff] [blame] | 23 | src/Protocol/TBase64Utils.cs \ |
| 24 | src/Protocol/TJSONProtocol.cs \ |
David Reiss | 1fdb592 | 2008-02-06 22:10:12 +0000 | [diff] [blame] | 25 | src/Protocol/TProtocolException.cs \ |
| 26 | src/Protocol/TProtocolFactory.cs \ |
| 27 | src/Protocol/TList.cs \ |
| 28 | src/Protocol/TSet.cs \ |
| 29 | src/Protocol/TMap.cs \ |
| 30 | src/Protocol/TProtocolUtil.cs \ |
| 31 | src/Protocol/TMessageType.cs \ |
| 32 | src/Protocol/TProtocol.cs \ |
| 33 | src/Protocol/TType.cs \ |
| 34 | src/Protocol/TField.cs \ |
| 35 | src/Protocol/TMessage.cs \ |
| 36 | src/Protocol/TStruct.cs \ |
| 37 | src/Protocol/TBinaryProtocol.cs \ |
David Reiss | 80a44e7 | 2009-02-03 22:16:46 +0000 | [diff] [blame] | 38 | src/Server/TThreadedServer.cs \ |
David Reiss | 1fdb592 | 2008-02-06 22:10:12 +0000 | [diff] [blame] | 39 | src/Server/TThreadPoolServer.cs \ |
| 40 | src/Server/TSimpleServer.cs \ |
| 41 | src/Server/TServer.cs \ |
David Reiss | 670cb0f | 2009-02-03 21:20:55 +0000 | [diff] [blame] | 42 | src/Transport/TBufferedTransport.cs \ |
David Reiss | 1fdb592 | 2008-02-06 22:10:12 +0000 | [diff] [blame] | 43 | src/Transport/TTransport.cs \ |
| 44 | src/Transport/TSocket.cs \ |
| 45 | src/Transport/TTransportException.cs \ |
| 46 | src/Transport/TStreamTransport.cs \ |
Esteve Fernandez | 7948a66 | 2009-11-11 18:32:25 +0000 | [diff] [blame] | 47 | src/Transport/TFramedTransport.cs \ |
David Reiss | 1fdb592 | 2008-02-06 22:10:12 +0000 | [diff] [blame] | 48 | src/Transport/TServerTransport.cs \ |
| 49 | src/Transport/TServerSocket.cs \ |
| 50 | src/Transport/TTransportFactory.cs \ |
Bryan Duxbury | 6235947 | 2010-06-24 20:34:34 +0000 | [diff] [blame] | 51 | src/Transport/THttpClient.cs \ |
Jake Farrell | 6f1e992 | 2011-04-13 21:09:02 +0000 | [diff] [blame] | 52 | src/Transport/THttpHandler.cs \ |
David Reiss | 1fdb592 | 2008-02-06 22:10:12 +0000 | [diff] [blame] | 53 | src/TProcessor.cs \ |
| 54 | src/TApplicationException.cs |
| 55 | |
| 56 | |
David Reiss | cfb23bb | 2008-04-02 22:09:03 +0000 | [diff] [blame] | 57 | CSC=gmcs |
David Reiss | 1fdb592 | 2008-02-06 22:10:12 +0000 | [diff] [blame] | 58 | |
David Reiss | d831a21 | 2009-02-13 03:09:52 +0000 | [diff] [blame] | 59 | if NET_2_0 |
| 60 | MONO_DEFINES=/d:NET_2_0 |
| 61 | endif |
| 62 | |
David Reiss | 3de1c4e | 2008-02-24 17:45:03 +0000 | [diff] [blame] | 63 | all-local: Thrift.dll |
David Reiss | 1fdb592 | 2008-02-06 22:10:12 +0000 | [diff] [blame] | 64 | |
| 65 | Thrift.dll: $(THRIFTCODE) |
Jake Farrell | daca359 | 2011-04-14 01:42:12 +0000 | [diff] [blame] | 66 | $(CSC) $(THRIFTCODE) /out:Thrift.dll /target:library /reference:System.Web $(MONO_DEFINES) |
David Reiss | 1fdb592 | 2008-02-06 22:10:12 +0000 | [diff] [blame] | 67 | |
| 68 | clean-local: |
| 69 | $(RM) Thrift.dll |
David Reiss | 3160971 | 2008-02-06 22:10:26 +0000 | [diff] [blame] | 70 | |
| 71 | EXTRA_DIST = \ |
| 72 | $(THRIFTCODE) \ |
| 73 | ThriftMSBuildTask \ |
| 74 | src/Thrift.csproj \ |
| 75 | src/Thrift.sln |