diff options
author | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-21 18:12:22 -0400 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-25 11:47:21 -0400 |
commit | b1c0f540c8e6944a8cae1bcbab60068fb7b40734 (patch) | |
tree | 1c2c300060c8144b895811c8516cd34643107710 /tools | |
parent | df6438f9a726c8f803e03708c83928e439fd5e2f (diff) |
selftests: futex: override clean in lib.mk to fix warnings
Add override for lib.mk clean to fix the following warnings from clean
target run.
Makefile:36: warning: overriding recipe for target 'clean'
../lib.mk:55: warning: ignoring old recipe for target 'clean'
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/futex/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/testing/selftests/futex/Makefile b/tools/testing/selftests/futex/Makefile index c8095e628e13..e2fbb890aef9 100644 --- a/tools/testing/selftests/futex/Makefile +++ b/tools/testing/selftests/futex/Makefile | |||
@@ -32,9 +32,10 @@ override define EMIT_TESTS | |||
32 | echo "./run.sh" | 32 | echo "./run.sh" |
33 | endef | 33 | endef |
34 | 34 | ||
35 | clean: | 35 | override define CLEAN |
36 | for DIR in $(SUBDIRS); do \ | 36 | for DIR in $(SUBDIRS); do \ |
37 | BUILD_TARGET=$(OUTPUT)/$$DIR; \ | 37 | BUILD_TARGET=$(OUTPUT)/$$DIR; \ |
38 | mkdir $$BUILD_TARGET -p; \ | 38 | mkdir $$BUILD_TARGET -p; \ |
39 | make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\ | 39 | make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\ |
40 | done | 40 | done |
41 | endef | ||