aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2015-03-17 21:02:41 -0400
committerMichael Ellerman <mpe@ellerman.id.au>2015-03-17 21:02:41 -0400
commita908f5de3b10d1a684d4fc3cb55ee0a7662ff293 (patch)
treeae66b56b08fdff3fc5138ce648a9fdef432cb599 /tools
parent58dae82843f508b0f1e7e8e593496ba6e2822979 (diff)
selftests/powerpc: Rename TARGETS in powerpc selftests makefile
This patch changes the name of the make variable TARGETS, to prevent it from colliding with a value set by the user on the command line (as they are recommended to do by tools/testing/selftests/README.txt). Without this patch, "make -C tools/testing/selftests TARGETS=powerpc" will fail. Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/selftests/powerpc/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/testing/selftests/powerpc/Makefile b/tools/testing/selftests/powerpc/Makefile
index 476b8dd9275f..27dff8241de3 100644
--- a/tools/testing/selftests/powerpc/Makefile
+++ b/tools/testing/selftests/powerpc/Makefile
@@ -13,22 +13,22 @@ CFLAGS := -Wall -O2 -flto -Wall -Werror -DGIT_VERSION='"$(GIT_VERSION)"' -I$(CUR
13 13
14export CC CFLAGS 14export CC CFLAGS
15 15
16TARGETS = pmu copyloops mm tm primitives stringloops vphn 16SUB_DIRS = pmu copyloops mm tm primitives stringloops vphn
17 17
18endif 18endif
19 19
20all: $(TARGETS) 20all: $(SUB_DIRS)
21 21
22$(TARGETS): 22$(SUB_DIRS):
23 $(MAKE) -k -C $@ all 23 $(MAKE) -k -C $@ all
24 24
25run_tests: all 25run_tests: all
26 @for TARGET in $(TARGETS); do \ 26 @for TARGET in $(SUB_DIRS); do \
27 $(MAKE) -C $$TARGET run_tests; \ 27 $(MAKE) -C $$TARGET run_tests; \
28 done; 28 done;
29 29
30clean: 30clean:
31 @for TARGET in $(TARGETS); do \ 31 @for TARGET in $(SUB_DIRS); do \
32 $(MAKE) -C $$TARGET clean; \ 32 $(MAKE) -C $$TARGET clean; \
33 done; 33 done;
34 rm -f tags 34 rm -f tags
@@ -36,4 +36,4 @@ clean:
36tags: 36tags:
37 find . -name '*.c' -o -name '*.h' | xargs ctags 37 find . -name '*.c' -o -name '*.h' | xargs ctags
38 38
39.PHONY: all run_tests clean tags $(TARGETS) 39.PHONY: all run_tests clean tags $(SUB_DIRS)