diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-10 23:55:37 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-10 23:55:37 -0500 |
commit | c34e6e0bd5d729948119d4b3e15b075ec0b80d6f (patch) | |
tree | ad4cce468724bf29a89330421184fc0245336738 /Makefile | |
parent | 6a177af775d92cff7ef36a681c304dc750dbe121 (diff) | |
parent | dcb825a9fd865638f82c557fe42ce8eed35f751d (diff) |
Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
Pull kbuild update from Michal Marek:
"The kbuild branch for v4.4-rc1 only has one commit: A new make
kselftest-clean target cleans tools/testing/selftests"
* 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
kselftest: add kselftest-clean rule
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1077,6 +1077,9 @@ PHONY += kselftest | |||
1077 | kselftest: | 1077 | kselftest: |
1078 | $(Q)$(MAKE) -C tools/testing/selftests run_tests | 1078 | $(Q)$(MAKE) -C tools/testing/selftests run_tests |
1079 | 1079 | ||
1080 | kselftest-clean: | ||
1081 | $(Q)$(MAKE) -C tools/testing/selftests clean | ||
1082 | |||
1080 | # --------------------------------------------------------------------------- | 1083 | # --------------------------------------------------------------------------- |
1081 | # Modules | 1084 | # Modules |
1082 | 1085 | ||
@@ -1284,6 +1287,7 @@ help: | |||
1284 | @echo ' kselftest - Build and run kernel selftest (run as root)' | 1287 | @echo ' kselftest - Build and run kernel selftest (run as root)' |
1285 | @echo ' Build, install, and boot kernel before' | 1288 | @echo ' Build, install, and boot kernel before' |
1286 | @echo ' running kselftest on it' | 1289 | @echo ' running kselftest on it' |
1290 | @echo ' kselftest-clean - Remove all generated kselftest files' | ||
1287 | @echo '' | 1291 | @echo '' |
1288 | @echo 'Kernel packaging:' | 1292 | @echo 'Kernel packaging:' |
1289 | @$(MAKE) $(build)=$(package-dir) help | 1293 | @$(MAKE) $(build)=$(package-dir) help |