Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
| 3 | # Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors |
| 4 | # |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 5 | # Licensed under the Apache License, Version 2.0 (the "License") |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # ----------------------------------------------------------------------- |
| 17 | |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 18 | $(if $(DEBUG),$(warning ENTER)) |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 19 | |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 20 | ##-------------------## |
| 21 | ##---] GLOBALS [---## |
| 22 | ##-------------------## |
| 23 | .PHONY: lint-yaml lint-yaml-all lint-yaml-modified |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 24 | |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 25 | have-yaml-files := $(if $(strip $(YAML_FILES)),true) |
| 26 | YAML_FILES ?= $(error YAML_FILES= is required) |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 27 | |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 28 | ## ----------------------------------------------------------------------- |
| 29 | ## Intent: Use the yaml command to perform syntax checking. |
| 30 | ## o If UNSTABLE=1 syntax check all sources |
| 31 | ## o else only check sources modified by the developer. |
| 32 | ## Usage: |
| 33 | ## % make lint UNSTABLE=1 |
| 34 | ## % make lint-yaml-all |
| 35 | ## ----------------------------------------------------------------------- |
Joey Armstrong | 01bbf8d | 2023-03-05 06:20:14 -0500 | [diff] [blame] | 36 | lint-yaml-mode := $(if $(have-yaml-files),modified,all) |
| 37 | lint-yaml : lint-yaml-$(lint-yaml-mode) |
| 38 | |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 39 | ifndef NO-LINT-YAML |
Joey Armstrong | 01bbf8d | 2023-03-05 06:20:14 -0500 | [diff] [blame] | 40 | lint : lint-yaml# # Enable as a default lint target |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 41 | endif# NO-LINT-YAML |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 42 | |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 43 | ## ----------------------------------------------------------------------- |
| 44 | ## Intent: exhaustive yaml syntax checking |
| 45 | ## ----------------------------------------------------------------------- |
| 46 | lint-yaml-all: |
| 47 | $(HIDE)$(MAKE) --no-print-directory lint-yaml-install |
| 48 | |
| 49 | find . \( -iname '*.yaml' -o -iname '*.yml' \) -print0 \ |
| 50 | | $(xargs-n1-clean) yamllint --strict |
| 51 | |
| 52 | ## ----------------------------------------------------------------------- |
| 53 | ## Intent: check deps for format and python3 cleanliness |
| 54 | ## Note: |
| 55 | ## yaml --py3k option no longer supported |
| 56 | ## ----------------------------------------------------------------------- |
| 57 | lint-yaml-modified: |
| 58 | $(HIDE)$(MAKE) --no-print-directory lint-yaml-install |
| 59 | yamllint -s $(YAML_FILES) |
| 60 | |
| 61 | ## ----------------------------------------------------------------------- |
| 62 | ## Intent: |
| 63 | ## ----------------------------------------------------------------------- |
| 64 | lint-yaml-install: |
| 65 | @echo |
| 66 | @echo "** -----------------------------------------------------------------------" |
| 67 | @echo "** yaml syntax checking" |
| 68 | @echo "** -----------------------------------------------------------------------" |
| 69 | yamllint --version |
| 70 | @echo |
| 71 | |
| 72 | ## ----------------------------------------------------------------------- |
| 73 | ## Intent: Display command usage |
| 74 | ## ----------------------------------------------------------------------- |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 75 | help:: |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 76 | @echo ' lint-yaml Syntax check python using the yaml command' |
| 77 | ifdef VERBOSE |
| 78 | @echo ' lint-yaml-all yaml checking: exhaustive' |
Joey Armstrong | 01bbf8d | 2023-03-05 06:20:14 -0500 | [diff] [blame] | 79 | @echo ' lint-yaml-modified yaml checking: only locally modified' |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 80 | endif |
| 81 | |
| 82 | $(if $(DEBUG),$(warning LEAVE)) |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 83 | |
| 84 | # [EOF] |