blob: 2a2d9aba7a2a310cacc6a760ae32731220258929 [file] [log] [blame]
Joey Armstrong28eddda2023-01-10 03:09:34 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong3f575f72023-01-15 23:49:19 -05003# Copyright 2022 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong28eddda2023-01-10 03:09:34 -05004# -----------------------------------------------------------------------
5
Joey Armstrong3f575f72023-01-15 23:49:19 -05006$(if $(DEBUG),$(warning ENTER))
7
8help ::
Joey Armstrong28eddda2023-01-10 03:09:34 -05009 @echo
10 @echo "[LINT]"
11
Joey Armstrong3f575f72023-01-15 23:49:19 -050012include $(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))
Joey Armstrong28eddda2023-01-10 03:09:34 -050023
24# [EOF]