mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
2cdfd3705e
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@740454 13f79535-47bb-0310-9956-ffa450edef68
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
THRIFTCODE= \
|
|
src/Protocol/TProtocolException.cs \
|
|
src/Protocol/TProtocolFactory.cs \
|
|
src/Protocol/TList.cs \
|
|
src/Protocol/TSet.cs \
|
|
src/Protocol/TMap.cs \
|
|
src/Protocol/TProtocolUtil.cs \
|
|
src/Protocol/TMessageType.cs \
|
|
src/Protocol/TProtocol.cs \
|
|
src/Protocol/TType.cs \
|
|
src/Protocol/TField.cs \
|
|
src/Protocol/TMessage.cs \
|
|
src/Protocol/TStruct.cs \
|
|
src/Protocol/TBinaryProtocol.cs \
|
|
src/Server/TThreadPoolServer.cs \
|
|
src/Server/TSimpleServer.cs \
|
|
src/Server/TServer.cs \
|
|
src/Transport/TTransport.cs \
|
|
src/Transport/TSocket.cs \
|
|
src/Transport/TTransportException.cs \
|
|
src/Transport/TStreamTransport.cs \
|
|
src/Transport/TServerTransport.cs \
|
|
src/Transport/TServerSocket.cs \
|
|
src/Transport/TTransportFactory.cs \
|
|
src/TProcessor.cs \
|
|
src/TApplicationException.cs
|
|
|
|
|
|
CSC=gmcs
|
|
|
|
all-local: Thrift.dll
|
|
|
|
Thrift.dll: $(THRIFTCODE)
|
|
$(CSC) $(THRIFTCODE) /out:Thrift.dll /target:library /langversion:linq
|
|
|
|
clean-local:
|
|
$(RM) Thrift.dll
|
|
|
|
EXTRA_DIST = \
|
|
$(THRIFTCODE) \
|
|
ThriftMSBuildTask \
|
|
src/Thrift.csproj \
|
|
src/Thrift.sln
|