blob: 894f718f12032576897192c443f8db93a8089ba1 [file] [log] [blame]
Joey Armstrong28eddda2023-01-10 03:09:34 -05001# -*- makefile -*-
Joey Armstrongdd334492023-07-09 17:59:02 -04002# -*- makefile -*-
Joey Armstrong28eddda2023-01-10 03:09:34 -05003# -----------------------------------------------------------------------
Joey Armstrongdd334492023-07-09 17:59:02 -04004# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18# SPDX-FileCopyrightText: 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
19# SPDX-License-Identifier: Apache-2.0
20# -----------------------------------------------------------------------
21# https://gerrit.opencord.org/plugins/gitiles/onf-make
22# ONF.makefile.version = 1.2
Joey Armstrong28eddda2023-01-10 03:09:34 -050023# -----------------------------------------------------------------------
24
Joey Armstrong3f575f72023-01-15 23:49:19 -050025$(if $(DEBUG),$(warning ENTER))
26
27help ::
Joey Armstrong28eddda2023-01-10 03:09:34 -050028 @echo
29 @echo "[LINT]"
30
Joey Armstrongdd334492023-07-09 17:59:02 -040031include $(ONF_MAKEDIR)/lint/groovy.mk
32include $(ONF_MAKEDIR)/lint/jjb.mk
33include $(ONF_MAKEDIR)/lint/json.mk
34include $(ONF_MAKEDIR)/lint/license/include.mk
35include $(ONF_MAKEDIR)/lint/makefile.mk
36include $(ONF_MAKEDIR)/lint/python/include.mk
37include $(ONF_MAKEDIR)/lint/shell.mk
38include $(ONF_MAKEDIR)/lint/tox/include.mk
39include $(ONF_MAKEDIR)/lint/yaml/include.mk
Joey Armstrong3f575f72023-01-15 23:49:19 -050040
41$(if $(DEBUG),$(warning LEAVE))
Joey Armstrong28eddda2023-01-10 03:09:34 -050042
43# [EOF]