Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
| 3 | # Copyright 2022 Open Networking Foundation (ONF) and the ONF Contributors |
| 4 | # ----------------------------------------------------------------------- |
| 5 | |
| 6 | $(if $(DEBUG),$(warning ENTER)) |
| 7 | |
| 8 | help :: |
| 9 | @echo |
| 10 | @echo "[LINT]" |
| 11 | |
| 12 | include $(ONF_MAKE)/lint/makefile.mk |
| 13 | include $(ONF_MAKE)/lint/python.mk |
| 14 | include $(ONF_MAKE)/lint/shell.mk |
| 15 | |
| 16 | ifdef YAML_FILES |
| 17 | include $(ONF_MAKE)/lint/yaml/python.mk |
| 18 | else |
| 19 | include $(ONF_MAKE)/lint/yaml/yamllint.mk |
| 20 | endif |
| 21 | |
| 22 | $(if $(DEBUG),$(warning LEAVE)) |
| 23 | |
| 24 | # [EOF] |