blob: aa6867ba6d4e61736884154dbb381af0b1ebf691 [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
16
17ifdef YAML_FILES
18 include $(ONF_MAKE)/lint/yaml/python.mk
19else
20 include $(ONF_MAKE)/lint/yaml/yamllint.mk
21endif
22
23$(if $(DEBUG),$(warning LEAVE))
Joey Armstrong28eddda2023-01-10 03:09:34 -050024
25# [EOF]