blob: abb680cc403c9f67705dda03a48bb8869349049a [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 \
44 Tests/Thrift.IntegrationTests/Protocols \
45 Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj \
46 Tests/Thrift.PublicInterfaces.Compile.Tests/Thrift.PublicInterfaces.Compile.Tests.csproj \
47 Tests/Thrift.PublicInterfaces.Compile.Tests/Properties/AssemblyInfo.cs \
Jens Geyeraffea7b2020-05-22 17:28:30 +020048 Tests/Thrift.PublicInterfaces.Compile.Tests/optional_required_default.thrift \
Jens Geyeraa0c8b32019-01-28 23:27:45 +010049 Tests/Thrift.PublicInterfaces.Compile.Tests/CassandraTest.thrift \
50 Tests/Thrift.Tests/Thrift.Tests.csproj \
51 Tests/Thrift.Tests/Protocols \
52 Tests/Thrift.Tests/Collections \
53 Thrift/TApplicationException.cs \
54 Thrift/TBaseClient.cs \
55 Thrift/TException.cs \
56 Thrift/Thrift.csproj \
57 Thrift/Collections \
58 Thrift/Processor \
59 Thrift/Properties \
60 Thrift/Protocol \
61 Thrift/Server \
62 Thrift/Transport \
63 Thrift.sln \
64 build.cmd \
65 build.sh \
66 runtests.cmd \
67 runtests.sh
Jens Geyeraffea7b2020-05-22 17:28:30 +020068