blob: 2a2d9aba7a2a310cacc6a760ae32731220258929 [file] [log] [blame]
Joey Armstrongb085c502023-01-17 13:56:24 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 2022 Open Networking Foundation (ONF) and the ONF Contributors
4# -----------------------------------------------------------------------
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]