From: Shuah Khan Date: Fri, 18 Aug 2017 21:54:41 +0000 (-0600) Subject: Makefile: add kselftest-clean to PHONY target list X-Git-Tag: v4.13-rc7~28^2~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=801d2e9f1cfb24c15ec821288b6bc2e3107f6fcd;p=karo-tx-linux.git Makefile: add kselftest-clean to PHONY target list kselftest-clean isn't in the PHONY target list. Add it. Signed-off-by: Shuah Khan Signed-off-by: Masahiro Yamada --- diff --git a/Makefile b/Makefile index 4dac1107913b..c913d80ea6e8 100644 --- a/Makefile +++ b/Makefile @@ -1184,6 +1184,7 @@ PHONY += kselftest kselftest: $(Q)$(MAKE) -C tools/testing/selftests run_tests +PHONY += kselftest-clean kselftest-clean: $(Q)$(MAKE) -C tools/testing/selftests clean