blob: cf4d134dd32beac41aeb6b1fa36fc48c0f2b91c3 [file] [log] [blame]
Jens Geyeraa0c8b32019-01-28 23:27:45 +01001#
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 = .
21
22all-local:
Jens Geyer56700e42020-02-22 16:51:51 +010023 $(DOTNETCORE) build -c Release
Jens Geyeraa0c8b32019-01-28 23:27:45 +010024
25check-local:
Jens Geyeraffea7b2020-05-22 17:28:30 +020026 $(DOTNETCORE) test Tests/Thrift.PublicInterfaces.Compile.Tests/Thrift.PublicInterfaces.Compile.Tests.csproj
Jens Geyeraa0c8b32019-01-28 23:27:45 +010027 $(DOTNETCORE) test Tests/Thrift.Tests/Thrift.Tests.csproj
Jens Geyer3f3567a2019-10-19 18:27:35 +020028 $(DOTNETCORE) test Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj
Jens Geyeraa0c8b32019-01-28 23:27:45 +010029
30clean-local:
31 $(RM) -r Thrift/bin
32 $(RM) -r Thrift/obj
Jens Geyeraffea7b2020-05-22 17:28:30 +020033 $(RM) -r Benchmarks/Thrift.Benchmarks/bin
34 $(RM) -r Benchmarks/Thrift.Benchmarks/obj
35 $(RM) -r Tests/Thrift.Tests/bin
36 $(RM) -r Tests/Thrift.Tests/obj
37 $(RM) -r Tests/Thrift.IntegrationTests/bin
38 $(RM) -r Tests/Thrift.IntegrationTests/obj
39 $(RM) -r Tests/Thrift.PublicInterfaces.Compile.Tests/bin
40 $(RM) -r Tests/Thrift.PublicInterfaces.Compile.Tests/obj
Jens Geyeraa0c8b32019-01-28 23:27:45 +010041
42EXTRA_DIST = \
43 README.md \
Jens Geyer2ef01132021-02-04 22:41:50 +010044 Directory.Build.props \
Jens Geyera10d4012022-02-02 22:57:46 +010045 .editorconfig \
Jens Geyer2ef01132021-02-04 22:41:50 +010046 Benchmarks/Thrift.Benchmarks \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010047 Tests/Thrift.IntegrationTests/Protocols \
48 Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj \
Jens Geyer2ef01132021-02-04 22:41:50 +010049 Tests/Thrift.PublicInterfaces.Compile.Tests \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010050 Tests/Thrift.PublicInterfaces.Compile.Tests/CassandraTest.thrift \
Jens Geyer2ef01132021-02-04 22:41:50 +010051 Tests/Thrift.PublicInterfaces.Compile.Tests/optional_required_default.thrift \
52 Tests/Thrift.PublicInterfaces.Compile.Tests/Properties/AssemblyInfo.cs \
53 Tests/Thrift.PublicInterfaces.Compile.Tests/Thrift.PublicInterfaces.Compile.Tests.csproj \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010054 Tests/Thrift.Tests/Collections \
Jens Geyer2ef01132021-02-04 22:41:50 +010055 Tests/Thrift.Tests/DataModel \
56 Tests/Thrift.Tests/Protocols \
Jens Geyera10d4012022-02-02 22:57:46 +010057 Tests/Thrift.Tests/Transports \
Jens Geyer2ef01132021-02-04 22:41:50 +010058 Tests/Thrift.Tests/Thrift.Tests.csproj \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010059 Thrift/Collections \
60 Thrift/Processor \
61 Thrift/Properties \
62 Thrift/Protocol \
63 Thrift/Server \
Jens Geyera10d4012022-02-02 22:57:46 +010064 Thrift/GlobalSuppressions.cs \
Jens Geyer2ef01132021-02-04 22:41:50 +010065 Thrift/TApplicationException.cs \
66 Thrift/TBaseClient.cs \
67 Thrift/TConfiguration.cs \
68 Thrift/TException.cs \
69 Thrift/Thrift.csproj \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010070 Thrift/Transport \
Jens Geyer2ef01132021-02-04 22:41:50 +010071 Thrift/*.snk \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010072 Thrift.sln \
73 build.cmd \
74 build.sh \
75 runtests.cmd \
76 runtests.sh
Jens Geyeraffea7b2020-05-22 17:28:30 +020077