diff options
author | SeongJae Park <sj38.park@gmail.com> | 2017-04-14 08:44:46 +0900 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-21 11:24:58 -0600 |
commit | 584f34f1721c3b5d2f8488b4afee1186a3f41cf7 (patch) | |
tree | 8e01c2af9402ffd5d9f3b3f2cc72676c50583246 /tools/testing/selftests | |
parent | ff80d9152fd71c07d4e80eccfa135880c44aef0f (diff) | |
download | linux-584f34f1721c3b5d2f8488b4afee1186a3f41cf7.tar.gz linux-584f34f1721c3b5d2f8488b4afee1186a3f41cf7.tar.bz2 linux-584f34f1721c3b5d2f8488b4afee1186a3f41cf7.zip |
selftests/Makefile: Add missed PHONY targets
`selftests/Makefile` is defining only `install` as entire PHONY target
though there are few more PHONY targets including `run_tests`. This
commit defines them as the PHONY targets.
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests')
-rw-r--r-- | tools/testing/selftests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index 395ab296c084..26ce4f7168be 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -133,4 +133,4 @@ clean: make OUTPUT=$$BUILD_TARGET -C $$TARGET clean;\ done; -.PHONY: install +.PHONY: all run_tests hotplug run_hotplug clean_hotplug run_pstore_crash install clean |