Build (168910d0f9377b23b98404c88c13d4c51cdc5f15) | Build (8a54784e708b51c1dcead1471bbee5fb31ae92cc) |
---|---|
1include $(srctree)/tools/scripts/Makefile.include 2include $(srctree)/tools/scripts/utilities.mak 3 4perf-util-y += arm64-frame-pointer-unwind-support.o 5perf-util-y += addr_location.o 6perf-util-y += annotate.o 7perf-util-y += block-info.o 8perf-util-y += block-range.o --- 416 unchanged lines hidden (view full) --- 425 MYPY_TEST_LOGS := 426endif 427 428$(OUTPUT)%.mypy_log: % 429 $(call rule_mkdir) 430 $(Q)$(call echo-cmd,test)mypy "$<" > $@ || (cat $@ && rm $@ && false) 431 432perf-util-y += $(MYPY_TEST_LOGS) | 1include $(srctree)/tools/scripts/Makefile.include 2include $(srctree)/tools/scripts/utilities.mak 3 4perf-util-y += arm64-frame-pointer-unwind-support.o 5perf-util-y += addr_location.o 6perf-util-y += annotate.o 7perf-util-y += block-info.o 8perf-util-y += block-range.o --- 416 unchanged lines hidden (view full) --- 425 MYPY_TEST_LOGS := 426endif 427 428$(OUTPUT)%.mypy_log: % 429 $(call rule_mkdir) 430 $(Q)$(call echo-cmd,test)mypy "$<" > $@ || (cat $@ && rm $@ && false) 431 432perf-util-y += $(MYPY_TEST_LOGS) |
433 434ifdef PYLINT 435 PYLINT_TEST_LOGS := $(PY_TESTS:%=%.pylint_log) 436else 437 PYLINT_TEST_LOGS := 438endif 439 440$(OUTPUT)%.pylint_log: % 441 $(call rule_mkdir) 442 $(Q)$(call echo-cmd,test)pylint "$<" > $@ || (cat $@ && rm $@ && false) 443 444perf-util-y += $(PYLINT_TEST_LOGS) |
|