blob: 357b6f58a175e8624234aa2852d24cd073ce36d8 [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 Armstrong980e37f2023-02-28 18:57:41 -050012include $(ONF_MAKE)/lint/groovy.mk
Joey Armstrongb3a06412023-02-06 09:58:58 -050013include $(ONF_MAKE)/lint/jjb.mk
Joey Armstrong980e37f2023-02-28 18:57:41 -050014include $(ONF_MAKE)/lint/json.mk
Joey Armstrong3f575f72023-01-15 23:49:19 -050015include $(ONF_MAKE)/lint/makefile.mk
16include $(ONF_MAKE)/lint/python.mk
17include $(ONF_MAKE)/lint/shell.mk
Joey Armstrong980e37f2023-02-28 18:57:41 -050018include $(ONF_MAKE)/lint/yaml.mk
Joey Armstrong3f575f72023-01-15 23:49:19 -050019
Joey Armstrong980e37f2023-02-28 18:57:41 -050020include $(ONF_MAKE)/lint/help.mk
Joey Armstrong3f575f72023-01-15 23:49:19 -050021
22$(if $(DEBUG),$(warning LEAVE))
Joey Armstrong28eddda2023-01-10 03:09:34 -050023
24# [EOF]