blob: 9dc1c7c7f7a74ace0fb2348aaf3099b0d55059f2 [file] [log] [blame]
Joey Armstrong4de98b72023-02-09 14:51:38 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors
4#
5# Licensed under the Apache License, Version 2.0 (the "License")
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# -----------------------------------------------------------------------
17
18$(if $(DEBUG),$(warning ENTER))
19
20##-------------------##
21##---] GLOBALS [---##
22##-------------------##
23.PHONY: lint-pylint lint-pylint-all lint-pylint-modified
24
25PYTHON_FILES ?= $(error PYTHON_FILES= required)
26
27## -----------------------------------------------------------------------
28## Intent: Use the pylint command to perform syntax checking.
29## o If UNSTABLE=1 syntax check all sources
30## o else only check sources modified by the developer.
31## Usage:
32## % make lint UNSTABLE=1
33## % make lint-pylint-all
34## -----------------------------------------------------------------------
35ifndef NO-LINT-PYLINT
36 lint-pylint-mode := $(if $(have-python-files),modified,all)
37 lint : lint-pylint-$(lint-pylint-mode)
38endif# NO-LINT-PYLINT
39
40## -----------------------------------------------------------------------
41## Intent: exhaustive pylint syntax checking
42## -----------------------------------------------------------------------
43pylint-find-args := $(null)
44pylint-find-args += -name '$(venv-name)'
45pylint-find-args += -o -name 'patches'
46lint-pylint-all: $(venv-activate-script)
47 $(MAKE) --no-print-directory lint-pylint-install
48
49 $(activate)\
50 && find . \( $(pylint-find-args) \) -prune -o -name '*.py' -print0 \
51 | $(xargs-n1) pylint
52
53## -----------------------------------------------------------------------
54## Intent: check deps for format and python3 cleanliness
55## Note:
56## pylint --py3k option no longer supported
57## -----------------------------------------------------------------------
58lint-pylint-modified: $(venv-activate-script)
59 $(MAKE) --no-print-directory lint-pylint-install
60
61 $(activate) && pylint $(PYTHON_FILES)
62
63## -----------------------------------------------------------------------
64## Intent:
65## -----------------------------------------------------------------------
66.PHONY: lint-pylint-install
67lint-pylint-install: $(venv-activate-script)
68 @echo
69 @echo "** -----------------------------------------------------------------------"
70 @echo "** python pylint syntax checking"
71 @echo "** -----------------------------------------------------------------------"
72 $(activate) && pip install --upgrade pylint
73 $(activate) && pylint --version
74 @echo
75
76## -----------------------------------------------------------------------
77## Intent: Display command usage
78## -----------------------------------------------------------------------
79help::
80 @echo ' lint-pylint Syntax check python using the pylint command'
81 ifdef VERBOSE
82 @echo ' $(MAKE) lint-pylint PYTHON_FILES=...'
83 @echo ' lint-pylint-modified pylint checking: only modified'
84 @echo ' lint-pylint-all pylint checking: exhaustive'
85 endif
86
87$(if $(DEBUG),$(warning LEAVE))
88
89# [EOF]