blob: 2c9011cabc3f6dd32fad57546fe2f2194ac7d83c [file] [log] [blame]
Joey Armstronga5278142023-06-28 16:56:54 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong098eedd2024-02-11 10:00:59 -05003# Copyright 2017-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# -----------------------------------------------------------------------
17
18ifndef --onf-mk-lint-yaml--
19
20$(if $(DEBUG),$(warning ENTER))
21
22##--------------------##
23##---] INCLUDES [---##
24##--------------------##
25include $(ONF_MAKEDIR)/lint/yaml/help.mk
26include $(ONF_MAKEDIR)/lint/yaml/find_utils.mk
27include $(ONF_MAKEDIR)/lint/yaml/install.mk
28
29# [TODO] Consolidate and refactor to support a simpler answer
30# Special snowflake linting requirements
31-include $(ONF_MAKEDIR)/lint/yaml/byrepo/$(--repo-name--)/include.mk
32
33# Standard lint-yaml targets
34include $(ONF_MAKEDIR)/lint/yaml/yamllint.mk
35
36--onf-mk-lint-yaml-- := true# # Flag to inhibit re-including
37
38$(if $(DEBUG),$(warning LEAVE))
39
40endif # --onf-mk-lint-yaml--
41
42# [EOF]