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 | |
Sven Roederer | 3caf963 | 2024-07-16 14:46:18 +0200 | [diff] [blame] | 20 | SUBDIRS = . |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 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 | 0f0e11f | 2024-07-19 00:44:43 +0200 | [diff] [blame] | 26 | $(DOTNETCORE) test Tests/Thrift.Compile.Tests/Thrift.Compile.net8/Thrift.Compile.net8.csproj |
Jens Geyer | e26b4a8 | 2024-11-12 23:53:04 +0100 | [diff] [blame] | 27 | $(DOTNETCORE) test Tests/Thrift.Compile.Tests/Thrift.Compile.net9/Thrift.Compile.net9.csproj |
Jens Geyer | 0f0e11f | 2024-07-19 00:44:43 +0200 | [diff] [blame] | 28 | $(DOTNETCORE) test Tests/Thrift.Compile.Tests/Thrift.Compile.netstd2/Thrift.Compile.netstd2.csproj |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 29 | $(DOTNETCORE) test Tests/Thrift.Tests/Thrift.Tests.csproj |
Jens Geyer | 3f3567a | 2019-10-19 18:27:35 +0200 | [diff] [blame] | 30 | $(DOTNETCORE) test Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 31 | |
| 32 | clean-local: |
| 33 | $(RM) -r Thrift/bin |
| 34 | $(RM) -r Thrift/obj |
Jens Geyer | affea7b | 2020-05-22 17:28:30 +0200 | [diff] [blame] | 35 | $(RM) -r Benchmarks/Thrift.Benchmarks/bin |
| 36 | $(RM) -r Benchmarks/Thrift.Benchmarks/obj |
| 37 | $(RM) -r Tests/Thrift.Tests/bin |
| 38 | $(RM) -r Tests/Thrift.Tests/obj |
| 39 | $(RM) -r Tests/Thrift.IntegrationTests/bin |
| 40 | $(RM) -r Tests/Thrift.IntegrationTests/obj |
Jens Geyer | 0f0e11f | 2024-07-19 00:44:43 +0200 | [diff] [blame] | 41 | $(RM) -r Tests/Thrift.Compile.Tests/Thrift.Compile.net8/bin |
| 42 | $(RM) -r Tests/Thrift.Compile.Tests/Thrift.Compile.net8/obj |
Jens Geyer | e26b4a8 | 2024-11-12 23:53:04 +0100 | [diff] [blame] | 43 | $(RM) -r Tests/Thrift.Compile.Tests/Thrift.Compile.net9/bin |
| 44 | $(RM) -r Tests/Thrift.Compile.Tests/Thrift.Compile.net9/obj |
Jens Geyer | 0f0e11f | 2024-07-19 00:44:43 +0200 | [diff] [blame] | 45 | $(RM) -r Tests/Thrift.Compile.Tests/Thrift.Compile.netstd2/bin |
| 46 | $(RM) -r Tests/Thrift.Compile.Tests/Thrift.Compile.netstd2/obj |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 47 | |
Thomas | 63f0458 | 2024-03-21 22:51:07 +0900 | [diff] [blame] | 48 | distdir: |
| 49 | $(MAKE) $(AM_MAKEFLAGS) distdir-am |
| 50 | |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 51 | EXTRA_DIST = \ |
| 52 | README.md \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame] | 53 | Directory.Build.props \ |
| 54 | Benchmarks/Thrift.Benchmarks \ |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 55 | Tests/Thrift.IntegrationTests/Protocols \ |
| 56 | Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj \ |
Jens Geyer | 0f0e11f | 2024-07-19 00:44:43 +0200 | [diff] [blame] | 57 | Tests/Thrift.Compile.Tests \ |
| 58 | Tests/Thrift.Compile.Tests/CassandraTest.thrift \ |
| 59 | Tests/Thrift.Compile.Tests/optional_required_default.thrift \ |
Jens Geyer | 1a31d90 | 2024-09-15 14:35:34 +0200 | [diff] [blame] | 60 | Tests/Thrift.Compile.Tests/Thrift.Compile.net8/Thrift.Compile.net8.csproj \ |
Jens Geyer | e26b4a8 | 2024-11-12 23:53:04 +0100 | [diff] [blame] | 61 | Tests/Thrift.Compile.Tests/Thrift.Compile.net9/Thrift.Compile.net9.csproj \ |
Jens Geyer | 1a31d90 | 2024-09-15 14:35:34 +0200 | [diff] [blame] | 62 | Tests/Thrift.Compile.Tests/Thrift.Compile.netstd2/Thrift.Compile.netstd2.csproj \ |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 63 | Tests/Thrift.Tests/Collections \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame] | 64 | Tests/Thrift.Tests/DataModel \ |
| 65 | Tests/Thrift.Tests/Protocols \ |
Jens Geyer | a10d401 | 2022-02-02 22:57:46 +0100 | [diff] [blame] | 66 | Tests/Thrift.Tests/Transports \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame] | 67 | Tests/Thrift.Tests/Thrift.Tests.csproj \ |
Jens Geyer | 48d1a70 | 2022-02-02 23:03:58 +0100 | [diff] [blame] | 68 | Thrift/.editorconfig \ |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 69 | Thrift/Collections \ |
| 70 | Thrift/Processor \ |
| 71 | Thrift/Properties \ |
| 72 | Thrift/Protocol \ |
| 73 | Thrift/Server \ |
Jens Geyer | a10d401 | 2022-02-02 22:57:46 +0100 | [diff] [blame] | 74 | Thrift/GlobalSuppressions.cs \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame] | 75 | Thrift/TApplicationException.cs \ |
| 76 | Thrift/TBaseClient.cs \ |
| 77 | Thrift/TConfiguration.cs \ |
| 78 | Thrift/TException.cs \ |
| 79 | Thrift/Thrift.csproj \ |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 80 | Thrift/Transport \ |
Jens Geyer | 2ef0113 | 2021-02-04 22:41:50 +0100 | [diff] [blame] | 81 | Thrift/*.snk \ |
Jens Geyer | aa0c8b3 | 2019-01-28 23:27:45 +0100 | [diff] [blame] | 82 | Thrift.sln \ |
| 83 | build.cmd \ |
| 84 | build.sh \ |
| 85 | runtests.cmd \ |
| 86 | runtests.sh |