aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/powerpc/tm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/selftests/powerpc/tm/Makefile')
-rw-r--r--tools/testing/selftests/powerpc/tm/Makefile15
1 files changed, 5 insertions, 10 deletions
diff --git a/tools/testing/selftests/powerpc/tm/Makefile b/tools/testing/selftests/powerpc/tm/Makefile
index 2cede239a074..34f2ec634b40 100644
--- a/tools/testing/selftests/powerpc/tm/Makefile
+++ b/tools/testing/selftests/powerpc/tm/Makefile
@@ -1,15 +1,10 @@
1PROGS := tm-resched-dscr 1TEST_PROGS := tm-resched-dscr
2 2
3all: $(PROGS) 3all: $(TEST_PROGS)
4 4
5$(PROGS): ../harness.c 5$(TEST_PROGS): ../harness.c
6 6
7run_tests: all 7include ../../lib.mk
8 @-for PROG in $(PROGS); do \
9 ./$$PROG; \
10 done;
11 8
12clean: 9clean:
13 rm -f $(PROGS) *.o 10 rm -f $(TEST_PROGS) *.o
14
15.PHONY: all run_tests clean