diff options
author | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-22 01:19:50 +0300 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2017-04-25 18:47:28 +0300 |
commit | 6dd89010ff3620d60fc9d604218791641d06831c (patch) | |
tree | 70d840099e36b62af17c9c0e93e551ce1a94fc12 /tools/testing/selftests/gpio | |
parent | b1c0f540c8e6944a8cae1bcbab60068fb7b40734 (diff) | |
download | linux-6dd89010ff3620d60fc9d604218791641d06831c.tar.xz |
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/gpio')
-rw-r--r-- | tools/testing/selftests/gpio/Makefile | 3 |
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 |