aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2018-09-07 10:34:54 -0400
committerShuah Khan (Samsung OSG) <shuah@kernel.org>2018-10-24 16:49:37 -0400
commita4f222e000b3f75bd1ab763dcc289d004ff6596e (patch)
treefa979d56781e4debadc30793e2623380a448b319 /tools
parentd89d08ffd2c5a9043c8df7333d9bee6c09904a8f (diff)
selftests: gpio: restructure Makefile
This patch cleans up the Makefile by restructuring a couple of things, namely: 1) change explicit paths in targets for variables 2) substitute a variable (BINARIES) for another, part of the selftests build system (TEST_PROGS_EXTENDED) 3) proper cleaning up of the EXTRA objects The resulting Makefile is much more readable and manageable. Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org> Signed-off-by: Shuah Khan (Samsung OSG) <shuah@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/selftests/gpio/Makefile32
1 files changed, 15 insertions, 17 deletions
diff --git a/tools/testing/selftests/gpio/Makefile b/tools/testing/selftests/gpio/Makefile
index 4665cdbf1a8d..a4a01ec8b2a5 100644
--- a/tools/testing/selftests/gpio/Makefile
+++ b/tools/testing/selftests/gpio/Makefile
@@ -1,28 +1,26 @@
1# SPDX-License-Identifier: GPL-2.0 1# SPDX-License-Identifier: GPL-2.0
2 2
3CFLAGS += -O2 -g -std=gnu99 -Wall -I../../../../usr/include/
4LDLIBS += -lmount -I/usr/include/libmount
5
3TEST_PROGS := gpio-mockup.sh 6TEST_PROGS := gpio-mockup.sh
4TEST_FILES := gpio-mockup-sysfs.sh $(BINARIES) 7TEST_FILES := gpio-mockup-sysfs.sh
5BINARIES := gpio-mockup-chardev 8TEST_PROGS_EXTENDED := gpio-mockup-chardev
6EXTRA_PROGS := ../gpiogpio-event-mon ../gpiogpio-hammer ../gpiolsgpio 9
7EXTRA_DIRS := ../gpioinclude/ 10GPIODIR := ../../../gpio
8EXTRA_OBJS := ../gpiogpio-event-mon-in.o ../gpiogpio-event-mon.o 11GPIOOBJ := gpio-utils.o
9EXTRA_OBJS += ../gpiogpio-hammer-in.o ../gpiogpio-utils.o ../gpiolsgpio-in.o
10EXTRA_OBJS += ../gpiolsgpio.o
11 12
12include ../lib.mk 13include ../lib.mk
13 14
14all: $(BINARIES) 15all: $(TEST_PROGS_EXTENDED)
15 16
16override define CLEAN 17override define CLEAN
17 $(RM) $(BINARIES) $(EXTRA_PROGS) $(EXTRA_OBJS) 18 $(RM) $(TEST_PROGS_EXTENDED)
18 $(RM) -r $(EXTRA_DIRS) 19 $(MAKE) -C $(GPIODIR) clean
19endef 20endef
20 21
21CFLAGS += -O2 -g -std=gnu99 -Wall -I../../../../usr/include/ 22$(TEST_PROGS_EXTENDED):| khdr
22LDLIBS += -lmount -I/usr/include/libmount 23$(TEST_PROGS_EXTENDED): $(GPIODIR)/$(GPIOOBJ)
23
24$(BINARIES):| khdr
25$(BINARIES): ../../../gpio/gpio-utils.o
26 24
27../../../gpio/gpio-utils.o: 25$(GPIODIR)/$(GPIOOBJ):
28 make ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE) -C ../../../gpio 26 $(MAKE) -C $(GPIODIR)