]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/thrift/lib/csharp/Makefile.am
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / jaegertracing / thrift / lib / csharp / Makefile.am
CommitLineData
f67539c2
TL
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
20SUBDIRS = . test/Multiplex
21
22THRIFTCODE = \
23 src/Collections/THashSet.cs \
24 src/Collections/TCollections.cs \
25 src/Properties/AssemblyInfo.cs \
26 src/Protocol/TAbstractBase.cs \
27 src/Protocol/TBase.cs \
28 src/Protocol/TBase64Utils.cs \
29 src/Protocol/TJSONProtocol.cs \
30 src/Protocol/TProtocolException.cs \
31 src/Protocol/TProtocolFactory.cs \
32 src/Protocol/TList.cs \
33 src/Protocol/TSet.cs \
34 src/Protocol/TMap.cs \
35 src/Protocol/TProtocolUtil.cs \
36 src/Protocol/TMessageType.cs \
37 src/Protocol/TProtocol.cs \
38 src/Protocol/TProtocolDecorator.cs \
39 src/Protocol/TMultiplexedProtocol.cs \
40 src/Protocol/TMultiplexedProcessor.cs \
41 src/Protocol/TType.cs \
42 src/Protocol/TField.cs \
43 src/Protocol/TMessage.cs \
44 src/Protocol/TStruct.cs \
45 src/Protocol/TBinaryProtocol.cs \
46 src/Protocol/TCompactProtocol.cs \
47 src/Server/TThreadedServer.cs \
48 src/Server/TThreadPoolServer.cs \
49 src/Server/TSimpleServer.cs \
50 src/Server/TServer.cs \
51 src/Server/TServerEventHandler.cs \
52 src/Transport/TBufferedTransport.cs \
53 src/Transport/TTransport.cs \
54 src/Transport/TSocket.cs \
55 src/Transport/TSocketVersionizer.cs \
56 src/Transport/TTransportException.cs \
57 src/Transport/TStreamTransport.cs \
58 src/Transport/TFramedTransport.cs \
59 src/Transport/TServerTransport.cs \
60 src/Transport/TServerSocket.cs \
61 src/Transport/TTransportFactory.cs \
62 src/Transport/THttpClient.cs \
63 src/Transport/THttpHandler.cs \
64 src/Transport/TMemoryBuffer.cs \
65 src/Transport/TNamedPipeClientTransport.cs \
66 src/Transport/TNamedPipeServerTransport.cs \
67 src/Transport/TTLSSocket.cs \
68 src/Transport/TTLSServerSocket.cs \
69 src/TProcessor.cs \
70 src/TProcessorFactory.cs \
71 src/TSingletonProcessorFactory.cs \
72 src/TPrototypeProcessorFactory.cs \
73 src/TControllingHandler.cs \
74 src/TException.cs \
75 src/TApplicationException.cs
76
77if MONO_MCS
78export CSC = mcs
79else
80export CSC = gmcs
81endif
82
83if NET_2_0
84export CSC_DEFINES = -d:NET_2_0
85endif
86
87all-local: Thrift.dll Thrift.45.dll
88
89Thrift.dll: $(THRIFTCODE)
90 $(CSC) $(CSC_DEFINES) -out:$@ -target:library -reference:System.Web $(THRIFTCODE)
91
92Thrift.45.dll: $(THRIFTCODE)
93 $(CSC) $(CSC_DEFINES) -out:$@ -target:library -reference:System.Web $(THRIFTCODE)
94
95CLEANFILES = \
96 Thrift.dll \
97 Thrift.45.dll
98
99DISTCLEANFILES = \
100 Makefile.in
101
102EXTRA_DIST = \
103 $(THRIFTCODE) \
104 ThriftMSBuildTask \
105 src/Thrift.csproj \
106 src/Thrift.45.csproj \
107 src/Thrift.sln \
108 src/Net35/ExtensionsNet35.cs \
109 src/Transport/TSilverlightSocket.cs \
110 src/Transport/THttpTaskAsyncHandler.cs \
111 src/TAsyncProcessor.cs \
112 test \
113 coding_standards.md \
114 README.md