blob: f9d3382feb4d505232e31a747b83a5e93920ed53 [file] [log] [blame]
Joey Armstrong6b58fd42023-04-12 17:45:53 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors
4#
5# Licensed under the Apache License, Version 2.0 (the "License")
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
18$(if $(DEBUG),$(warning ENTER))
19
20##-------------------##
21##---] GLOBALS [---##
22##-------------------##
23.PHONY: lint-yaml lint-yaml-all lint-yaml-modified
24
25have-yaml-files := $(if $(strip $(YAML_FILES)),true)
26YAML_FILES ?= $(error YAML_FILES= is required)
27
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## -----------------------------------------------------------------------
36ifndef NO-LINT-YAML
37 lint-yaml-mode := $(if $(have-yaml-files),modified,all)
38 lint : lint-yaml-$(lint-yaml-mode)
39endif# NO-LINT-YAML
40
41## -----------------------------------------------------------------------
42## Intent: exhaustive yaml syntax checking
43## -----------------------------------------------------------------------
44lint-yaml-all:
45 $(HIDE)$(MAKE) --no-print-directory lint-yaml-install
46
47 find . \( -iname '*.yaml' -o -iname '*.yml' \) -print0 \
48 | $(xargs-n1-clean) yamllint --strict
49
50## -----------------------------------------------------------------------
51## Intent: check deps for format and python3 cleanliness
52## Note:
53## yaml --py3k option no longer supported
54## -----------------------------------------------------------------------
55lint-yaml-modified:
56 $(HIDE)$(MAKE) --no-print-directory lint-yaml-install
57 yamllint -s $(YAML_FILES)
58
59## -----------------------------------------------------------------------
60## Intent:
61## -----------------------------------------------------------------------
62lint-yaml-install:
63 @echo
64 @echo "** -----------------------------------------------------------------------"
65 @echo "** yaml syntax checking"
66 @echo "** -----------------------------------------------------------------------"
67 yamllint --version
68 @echo
69
70## -----------------------------------------------------------------------
71## Intent: Display command usage
72## -----------------------------------------------------------------------
73help::
74 @echo ' lint-yaml Syntax check python using the yaml command'
75
76help-verbose += help-lint-yaml-verbose
77help-lint-yaml-verbose:
78 @echo ' $(MAKE) lint-yaml YAML_FILES=...'
79 @echo ' lint-yaml-all yaml checking: exhaustive'
80 @echo ' lint-yaml-modified yaml checking: only modified'
81
82$(if $(DEBUG),$(warning LEAVE))
83
84# [EOF]