Joey Armstrong | 695ba5c | 2023-01-20 11:17:49 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
| 3 | # Copyright 2022 Open Networking Foundation (ONF) and the ONF Contributors |
| 4 | # ----------------------------------------------------------------------- |
Joey Armstrong | 99a72d0 | 2023-06-09 10:26:42 -0400 | [diff] [blame] | 5 | # https://gerrit.opencord.org/plugins/gitiles/onf-make |
| 6 | # ONF.makefile.version = 1.1 |
| 7 | # ----------------------------------------------------------------------- |
Joey Armstrong | 695ba5c | 2023-01-20 11:17:49 -0500 | [diff] [blame] | 8 | |
| 9 | $(if $(DEBUG),$(warning ENTER)) |
| 10 | |
| 11 | help :: |
| 12 | @echo |
| 13 | @echo "[LINT]" |
| 14 | |
Joey Armstrong | 99a72d0 | 2023-06-09 10:26:42 -0400 | [diff] [blame] | 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 |
Joey Armstrong | 695ba5c | 2023-01-20 11:17:49 -0500 | [diff] [blame] | 23 | |
Joey Armstrong | 99a72d0 | 2023-06-09 10:26:42 -0400 | [diff] [blame] | 24 | include $(ONF_MAKEDIR)/lint/help.mk |
Joey Armstrong | 695ba5c | 2023-01-20 11:17:49 -0500 | [diff] [blame] | 25 | |
| 26 | $(if $(DEBUG),$(warning LEAVE)) |
| 27 | |
| 28 | # [EOF] |