aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests
diff options
context:
space:
mode:
authorShuah Khan <shuahkh@osg.samsung.com>2017-04-21 16:19:50 -0600
committerShuah Khan <shuahkh@osg.samsung.com>2017-04-25 09:47:28 -0600
commit6dd89010ff3620d60fc9d604218791641d06831c (patch)
tree70d840099e36b62af17c9c0e93e551ce1a94fc12 /tools/testing/selftests
parentselftests: futex: override clean in lib.mk to fix warnings (diff)
downloadlinux-dev-6dd89010ff3620d60fc9d604218791641d06831c.tar.xz
linux-dev-6dd89010ff3620d60fc9d604218791641d06831c.zip
selftests: gpio: override clean in lib.mk to fix warnings
Add override for lib.mk clean to fix the following warnings from clean target run. Makefile:11: 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/selftests')
-rw-r--r--tools/testing/selftests/gpio/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/testing/selftests/gpio/Makefile b/tools/testing/selftests/gpio/Makefile
index 205e4d10e085..4f6d9e0169b2 100644
--- a/tools/testing/selftests/gpio/Makefile
+++ b/tools/testing/selftests/gpio/Makefile
@@ -7,8 +7,9 @@ include ../lib.mk
all: $(BINARIES)
-clean:
+override define CLEAN
$(RM) $(BINARIES)
+endef
CFLAGS += -O2 -g -std=gnu99 -Wall -I../../../../usr/include/
LDLIBS += -lmount -I/usr/include/libmount