diff options
Diffstat (limited to 'tools/testing/selftests/powerpc/tm/Makefile')
-rw-r--r-- | tools/testing/selftests/powerpc/tm/Makefile | 15 |
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 @@ | |||
1 | PROGS := tm-resched-dscr | 1 | TEST_PROGS := tm-resched-dscr |
2 | 2 | ||
3 | all: $(PROGS) | 3 | all: $(TEST_PROGS) |
4 | 4 | ||
5 | $(PROGS): ../harness.c | 5 | $(TEST_PROGS): ../harness.c |
6 | 6 | ||
7 | run_tests: all | 7 | include ../../lib.mk |
8 | @-for PROG in $(PROGS); do \ | ||
9 | ./$$PROG; \ | ||
10 | done; | ||
11 | 8 | ||
12 | clean: | 9 | clean: |
13 | rm -f $(PROGS) *.o | 10 | rm -f $(TEST_PROGS) *.o |
14 | |||
15 | .PHONY: all run_tests clean | ||