David Reiss | 1fdb592 | 2008-02-06 22:10:12 +0000 | [diff] [blame^] | 1 | THRIFTCODE= \ |
| 2 | src/Protocol/TProtocolException.cs \ |
| 3 | src/Protocol/TProtocolFactory.cs \ |
| 4 | src/Protocol/TList.cs \ |
| 5 | src/Protocol/TSet.cs \ |
| 6 | src/Protocol/TMap.cs \ |
| 7 | src/Protocol/TProtocolUtil.cs \ |
| 8 | src/Protocol/TMessageType.cs \ |
| 9 | src/Protocol/TProtocol.cs \ |
| 10 | src/Protocol/TType.cs \ |
| 11 | src/Protocol/TField.cs \ |
| 12 | src/Protocol/TMessage.cs \ |
| 13 | src/Protocol/TStruct.cs \ |
| 14 | src/Protocol/TBinaryProtocol.cs \ |
| 15 | src/Server/TThreadPoolServer.cs \ |
| 16 | src/Server/TSimpleServer.cs \ |
| 17 | src/Server/TServer.cs \ |
| 18 | src/Transport/TTransport.cs \ |
| 19 | src/Transport/TSocket.cs \ |
| 20 | src/Transport/TTransportException.cs \ |
| 21 | src/Transport/TStreamTransport.cs \ |
| 22 | src/Transport/TServerTransport.cs \ |
| 23 | src/Transport/TServerSocket.cs \ |
| 24 | src/Transport/TTransportFactory.cs \ |
| 25 | src/TProcessor.cs \ |
| 26 | src/TApplicationException.cs |
| 27 | |
| 28 | |
| 29 | CSC=gmcs -langversion:linq |
| 30 | |
| 31 | all: Thrift.dll |
| 32 | |
| 33 | Thrift.dll: $(THRIFTCODE) |
| 34 | $(CSC) $(THRIFTCODE) /out:Thrift.dll /target:library |
| 35 | |
| 36 | clean-local: |
| 37 | $(RM) Thrift.dll |