Makefile.perf (168910d0f9377b23b98404c88c13d4c51cdc5f15) | Makefile.perf (8a54784e708b51c1dcead1471bbee5fb31ae92cc) |
---|---|
1# SPDX-License-Identifier: GPL-2.0-only 2include ../scripts/Makefile.include 3include ../scripts/Makefile.arch 4 5# The default target of this Makefile is... 6all: 7 8include ../scripts/utilities.mak --- 297 unchanged lines hidden (view full) --- 306 endif 307endif 308 309# Runs mypy on perf python files 310ifeq ($(MYPY),1) 311 MYPY := $(shell which mypy 2> /dev/null) 312endif 313 | 1# SPDX-License-Identifier: GPL-2.0-only 2include ../scripts/Makefile.include 3include ../scripts/Makefile.arch 4 5# The default target of this Makefile is... 6all: 7 8include ../scripts/utilities.mak --- 297 unchanged lines hidden (view full) --- 306 endif 307endif 308 309# Runs mypy on perf python files 310ifeq ($(MYPY),1) 311 MYPY := $(shell which mypy 2> /dev/null) 312endif 313 |
314# Runs pylint on perf python files 315ifeq ($(PYLINT),1) 316 PYLINT := $(shell which pylint 2> /dev/null) 317endif 318 |
|
314export srctree OUTPUT RM CC CXX LD AR CFLAGS CXXFLAGS V BISON FLEX AWK | 319export srctree OUTPUT RM CC CXX LD AR CFLAGS CXXFLAGS V BISON FLEX AWK |
315export HOSTCC HOSTLD HOSTAR HOSTCFLAGS SHELLCHECK MYPY | 320export HOSTCC HOSTLD HOSTAR HOSTCFLAGS SHELLCHECK MYPY PYLINT |
316 317include $(srctree)/tools/build/Makefile.include 318 319ifeq ($(force_fixdep),1) 320goals := $(filter-out all sub-make, $(MAKECMDGOALS)) 321 322$(goals) all: sub-make 323 --- 1057 unchanged lines hidden --- | 321 322include $(srctree)/tools/build/Makefile.include 323 324ifeq ($(force_fixdep),1) 325goals := $(filter-out all sub-make, $(MAKECMDGOALS)) 326 327$(goals) all: sub-make 328 --- 1057 unchanged lines hidden --- |