blob: 66834a698c95351ab15728f8f710fa6f380bc1ee [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 Armstrongb3a06412023-02-06 09:58:58 -050012include $(ONF_MAKE)/lint/jjb.mk
Joey Armstrong3f575f72023-01-15 23:49:19 -050013include $(ONF_MAKE)/lint/makefile.mk
14include $(ONF_MAKE)/lint/python.mk
15include $(ONF_MAKE)/lint/shell.mk
Joey Armstrong068d6452023-02-01 11:09:18 -050016include $(ONF_MAKE)/lint/help.mk
Joey Armstrong3f575f72023-01-15 23:49:19 -050017
18ifdef YAML_FILES
19 include $(ONF_MAKE)/lint/yaml/python.mk
20else
21 include $(ONF_MAKE)/lint/yaml/yamllint.mk
22endif
23
24$(if $(DEBUG),$(warning LEAVE))
Joey Armstrong28eddda2023-01-10 03:09:34 -050025
26# [EOF]