aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing
diff options
context:
space:
mode:
authorShuah Khan <shuahkh@osg.samsung.com>2017-04-21 16:12:22 -0600
committerShuah Khan <shuahkh@osg.samsung.com>2017-04-25 09:47:21 -0600
commitb1c0f540c8e6944a8cae1bcbab60068fb7b40734 (patch)
tree1c2c300060c8144b895811c8516cd34643107710 /tools/testing
parentselftests: lib.mk: define CLEAN macro to allow Makefiles to override clean (diff)
downloadlinux-dev-b1c0f540c8e6944a8cae1bcbab60068fb7b40734.tar.xz
linux-dev-b1c0f540c8e6944a8cae1bcbab60068fb7b40734.zip
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/testing')
-rw-r--r--tools/testing/selftests/futex/Makefile3
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
echo "./run.sh"
endef
-clean:
+override define CLEAN
for DIR in $(SUBDIRS); do \
BUILD_TARGET=$(OUTPUT)/$$DIR; \
mkdir $$BUILD_TARGET -p; \
make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\
done
+endef