blob: d8a007be93002469462285a74b270ca354b7410e [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 Reiss1fdb5922008-02-06 22:10:12 +000020THRIFTCODE= \
David Reissd831a212009-02-13 03:09:52 +000021 src/Collections/THashSet.cs \
David Reiss80a44e72009-02-03 22:16:46 +000022 src/Protocol/TBase.cs \
David Reiss1fdb5922008-02-06 22:10:12 +000023 src/Protocol/TProtocolException.cs \
24 src/Protocol/TProtocolFactory.cs \
25 src/Protocol/TList.cs \
26 src/Protocol/TSet.cs \
27 src/Protocol/TMap.cs \
28 src/Protocol/TProtocolUtil.cs \
29 src/Protocol/TMessageType.cs \
30 src/Protocol/TProtocol.cs \
31 src/Protocol/TType.cs \
32 src/Protocol/TField.cs \
33 src/Protocol/TMessage.cs \
34 src/Protocol/TStruct.cs \
35 src/Protocol/TBinaryProtocol.cs \
David Reiss80a44e72009-02-03 22:16:46 +000036 src/Server/TThreadedServer.cs \
David Reiss1fdb5922008-02-06 22:10:12 +000037 src/Server/TThreadPoolServer.cs \
38 src/Server/TSimpleServer.cs \
39 src/Server/TServer.cs \
David Reiss670cb0f2009-02-03 21:20:55 +000040 src/Transport/TBufferedTransport.cs \
David Reiss1fdb5922008-02-06 22:10:12 +000041 src/Transport/TTransport.cs \
42 src/Transport/TSocket.cs \
43 src/Transport/TTransportException.cs \
44 src/Transport/TStreamTransport.cs \
Esteve Fernandez7948a662009-11-11 18:32:25 +000045 src/Transport/TFramedTransport.cs \
David Reiss1fdb5922008-02-06 22:10:12 +000046 src/Transport/TServerTransport.cs \
47 src/Transport/TServerSocket.cs \
48 src/Transport/TTransportFactory.cs \
Bryan Duxbury62359472010-06-24 20:34:34 +000049 src/Transport/THttpClient.cs \
David Reiss1fdb5922008-02-06 22:10:12 +000050 src/TProcessor.cs \
51 src/TApplicationException.cs
52
53
David Reisscfb23bb2008-04-02 22:09:03 +000054CSC=gmcs
David Reiss1fdb5922008-02-06 22:10:12 +000055
David Reissd831a212009-02-13 03:09:52 +000056if NET_2_0
57MONO_DEFINES=/d:NET_2_0
58endif
59
David Reiss3de1c4e2008-02-24 17:45:03 +000060all-local: Thrift.dll
David Reiss1fdb5922008-02-06 22:10:12 +000061
62Thrift.dll: $(THRIFTCODE)
David Reissd831a212009-02-13 03:09:52 +000063 $(CSC) $(THRIFTCODE) /out:Thrift.dll /target:library $(MONO_DEFINES)
David Reiss1fdb5922008-02-06 22:10:12 +000064
65clean-local:
66 $(RM) Thrift.dll
David Reiss31609712008-02-06 22:10:26 +000067
68EXTRA_DIST = \
69 $(THRIFTCODE) \
70 ThriftMSBuildTask \
71 src/Thrift.csproj \
72 src/Thrift.sln