blob: 503a1761367fb9d9bff7b0b6ac4f32c2e1505b37 [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:
26 $(DOTNETCORE) test Tests/Thrift.Tests/Thrift.Tests.csproj
Jens Geyer3f3567a2019-10-19 18:27:35 +020027 $(DOTNETCORE) test Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj
Jens Geyeraa0c8b32019-01-28 23:27:45 +010028
29clean-local:
30 $(RM) -r Thrift/bin
31 $(RM) -r Thrift/obj
32
33EXTRA_DIST = \
34 README.md \
35 Tests/Thrift.IntegrationTests/Protocols \
36 Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj \
37 Tests/Thrift.PublicInterfaces.Compile.Tests/Thrift.PublicInterfaces.Compile.Tests.csproj \
38 Tests/Thrift.PublicInterfaces.Compile.Tests/Properties/AssemblyInfo.cs \
39 Tests/Thrift.PublicInterfaces.Compile.Tests/CassandraTest.thrift \
40 Tests/Thrift.Tests/Thrift.Tests.csproj \
41 Tests/Thrift.Tests/Protocols \
42 Tests/Thrift.Tests/Collections \
43 Thrift/TApplicationException.cs \
44 Thrift/TBaseClient.cs \
45 Thrift/TException.cs \
46 Thrift/Thrift.csproj \
47 Thrift/Collections \
48 Thrift/Processor \
49 Thrift/Properties \
50 Thrift/Protocol \
51 Thrift/Server \
52 Thrift/Transport \
53 Thrift.sln \
54 build.cmd \
55 build.sh \
56 runtests.cmd \
57 runtests.sh
58