blob: dbc2e8bf0f267dda9d9d622b8f68936bc2af3799 [file] [log] [blame]
Joey Armstrong7f8436c2023-07-09 20:23:27 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong9cdee9f2024-01-03 04:56:14 -05003# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong7f8436c2023-07-09 20:23:27 -04004# -----------------------------------------------------------------------
5
6$(if $(DEBUG),$(warning ENTER))
7
8help ::
9 @echo
10 @echo "[LINT]"
11
12include $(ONF_MAKE)/lint/makefile.mk
13include $(ONF_MAKE)/lint/python.mk
14include $(ONF_MAKE)/lint/shell.mk
15
16ifdef YAML_FILES
17 include $(ONF_MAKE)/lint/yaml/python.mk
18else
19 include $(ONF_MAKE)/lint/yaml/yamllint.mk
20endif
21
22$(if $(DEBUG),$(warning LEAVE))
23
24# [EOF]