Joey Armstrong | 367d76b | 2023-06-08 17:16:46 -0400 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
Joey Armstrong | 393daca | 2023-07-06 08:47:54 -0400 | [diff] [blame] | 3 | # Copyright 2012-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Joey Armstrong | 367d76b | 2023-06-08 17:16:46 -0400 | [diff] [blame] | 4 | # ----------------------------------------------------------------------- |
| 5 | # https://gerrit.opencord.org/plugins/gitiles/onf-make |
| 6 | # ONF.makefile.version = 1.1 |
| 7 | # ----------------------------------------------------------------------- |
| 8 | |
| 9 | $(if $(DEBUG),$(warning ENTER)) |
| 10 | |
| 11 | help :: |
| 12 | @echo |
| 13 | @echo "[LINT]" |
| 14 | |
| 15 | include $(ONF_MAKEDIR)/lint/groovy.mk |
| 16 | include $(ONF_MAKEDIR)/lint/jjb.mk |
| 17 | include $(ONF_MAKEDIR)/lint/json.mk |
| 18 | include $(ONF_MAKEDIR)/lint/license/include.mk |
| 19 | include $(ONF_MAKEDIR)/lint/makefile.mk |
| 20 | include $(ONF_MAKEDIR)/lint/python.mk |
| 21 | include $(ONF_MAKEDIR)/lint/shell.mk |
| 22 | include $(ONF_MAKEDIR)/lint/yaml.mk |
| 23 | |
| 24 | include $(ONF_MAKEDIR)/lint/help.mk |
| 25 | |
| 26 | $(if $(DEBUG),$(warning LEAVE)) |
| 27 | |
| 28 | # [EOF] |