Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 1 | # |
| 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 | |
| 20 | SUBDIRS = . |
| 21 | |
| 22 | all-local: |
Jens Geyer | 56700e4 | 2020-02-22 16:51:51 +0100 | [diff] [blame] | 23 | $(DOTNETCORE) build -c Release |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 24 | |
| 25 | check-local: |
Jens Geyer | affea7b | 2020-05-22 17:28:30 +0200 | [diff] [blame] | 26 | $(DOTNETCORE) test Tests/Thrift.PublicInterfaces.Compile.Tests/Thrift.PublicInterfaces.Compile.Tests.csproj |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 27 | $(DOTNETCORE) test Tests/Thrift.Tests/Thrift.Tests.csproj |
Jens Geyer | 3f3567a | 2019-10-19 18:27:35 +0200 | [diff] [blame] | 28 | $(DOTNETCORE) test Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 29 | |
| 30 | clean-local: |
| 31 | $(RM) -r Thrift/bin |
| 32 | $(RM) -r Thrift/obj |
Jens Geyer | affea7b | 2020-05-22 17:28:30 +0200 | [diff] [blame] | 33 | $(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 Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 41 | |
| 42 | EXTRA_DIST = \ |
| 43 | README.md \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame^] | 44 | Directory.Build.props \ |
| 45 | Benchmarks/Thrift.Benchmarks \ |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 46 | Tests/Thrift.IntegrationTests/Protocols \ |
| 47 | Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame^] | 48 | Tests/Thrift.PublicInterfaces.Compile.Tests \ |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 49 | Tests/Thrift.PublicInterfaces.Compile.Tests/CassandraTest.thrift \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame^] | 50 | 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 Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 53 | Tests/Thrift.Tests/Collections \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame^] | 54 | Tests/Thrift.Tests/DataModel \ |
| 55 | Tests/Thrift.Tests/Protocols \ |
| 56 | Tests/Thrift.Tests/Thrift.Tests.csproj \ |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 57 | Thrift/Collections \ |
| 58 | Thrift/Processor \ |
| 59 | Thrift/Properties \ |
| 60 | Thrift/Protocol \ |
| 61 | Thrift/Server \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame^] | 62 | Thrift/TApplicationException.cs \ |
| 63 | Thrift/TBaseClient.cs \ |
| 64 | Thrift/TConfiguration.cs \ |
| 65 | Thrift/TException.cs \ |
| 66 | Thrift/Thrift.csproj \ |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 67 | Thrift/Transport \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame^] | 68 | Thrift/*.snk \ |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 69 | Thrift.sln \ |
| 70 | build.cmd \ |
| 71 | build.sh \ |
| 72 | runtests.cmd \ |
| 73 | runtests.sh |
Jens Geyer | affea7b | 2020-05-22 17:28:30 +0200 | [diff] [blame] | 74 | |