blob: f1a87a242605b41c74518b678e033c851751ca6b [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 \
45 Benchmarks/Thrift.Benchmarks \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010046 Tests/Thrift.IntegrationTests/Protocols \
47 Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj \
Jens Geyer2ef01132021-02-04 22:41:50 +010048 Tests/Thrift.PublicInterfaces.Compile.Tests \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010049 Tests/Thrift.PublicInterfaces.Compile.Tests/CassandraTest.thrift \
Jens Geyer2ef01132021-02-04 22:41:50 +010050 Tests/Thrift.PublicInterfaces.Compile.Tests/optional_required_default.thrift \
51 Tests/Thrift.PublicInterfaces.Compile.Tests/Properties/AssemblyInfo.cs \
52 Tests/Thrift.PublicInterfaces.Compile.Tests/Thrift.PublicInterfaces.Compile.Tests.csproj \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010053 Tests/Thrift.Tests/Collections \
Jens Geyer2ef01132021-02-04 22:41:50 +010054 Tests/Thrift.Tests/DataModel \
55 Tests/Thrift.Tests/Protocols \
56 Tests/Thrift.Tests/Thrift.Tests.csproj \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010057 Thrift/Collections \
58 Thrift/Processor \
59 Thrift/Properties \
60 Thrift/Protocol \
61 Thrift/Server \
Jens Geyer2ef01132021-02-04 22:41:50 +010062 Thrift/TApplicationException.cs \
63 Thrift/TBaseClient.cs \
64 Thrift/TConfiguration.cs \
65 Thrift/TException.cs \
66 Thrift/Thrift.csproj \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010067 Thrift/Transport \
Jens Geyer2ef01132021-02-04 22:41:50 +010068 Thrift/*.snk \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010069 Thrift.sln \
70 build.cmd \
71 build.sh \
72 runtests.cmd \
73 runtests.sh
Jens Geyeraffea7b2020-05-22 17:28:30 +020074