blob: edcc2129862ca5d603d4e19a5cd95360d51bda89 [file] [log] [blame]
Joey Armstronga5278142023-06-28 16:56:54 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong098eedd2024-02-11 10:00:59 -05003# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstronga5278142023-06-28 16:56:54 -04004#
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#
Joey Armstrong098eedd2024-02-11 10:00:59 -050017# SPDX-FileCopyrightText: 2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstronga5278142023-06-28 16:56:54 -040018# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
20
21$(if $(DEBUG),$(warning ENTER))
22
23## -----------------------------------------------------------------------
24## Intent: Install the yamllint tool
25## -----------------------------------------------------------------------
26.PHONY: lint-yaml-install
27
28# -----------------------------------------------------------------------
29# We can(/should?) define a command macro
30# wait a bit until use cases are better known.
31# Initial use required inserting xargs bash -c "$(YAMLLINT) {}"
32# -----------------------------------------------------------------------
33# YAMLLINT ?= $(venv-activate-bin)/yamllint
34# YAMLLINT ?= $(activate) && yamllint
35
36## -----------------------------------------------------------------------
37## Intent: Display yamllint command version string.
38## Note: As a side effect, install yamllint by dependency
39## -----------------------------------------------------------------------
40.PHONY: lint-yaml-cmd-version
41lint-yaml-cmd-version : $(venv-activate-bin)/yamllint
42
43 $(HIDE) echo
44 $< --version
45
46## -----------------------------------------------------------------------
47## Intent: On-demand instalation of the yamllint command
48## -----------------------------------------------------------------------
49lint-yaml-install := $(venv-activate-bin)/yamllint
50$(lint-yaml-install) : $(venv-activate-script)
51
52 $(call banner-enter,Target $@)
53 $(activate) && pip install yamllint
54 $(call banner-leave,Target $@)
55
56## -----------------------------------------------------------------------
57## Intent: Purge yamllint tool installation
58## -----------------------------------------------------------------------
59sterile ::
60 $(HIDE)$(RM) "$(venv-abs-bin)/yamllint"
61 $(HIDE)$(RM) -r .venv/lib/*/site-packages/yamllint
62
63## -----------------------------------------------------------------------
64## Intent: Display command usage
65## -----------------------------------------------------------------------
66help::
67 @echo ' lint-yaml-install Install the yamllint tool'
68
69# [EOF]