diff options
Diffstat (limited to 'tools/testing/selftests/powerpc/vphn/Makefile')
-rw-r--r-- | tools/testing/selftests/powerpc/vphn/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/testing/selftests/powerpc/vphn/Makefile b/tools/testing/selftests/powerpc/vphn/Makefile new file mode 100644 index 000000000000..e539f775fd8f --- /dev/null +++ b/tools/testing/selftests/powerpc/vphn/Makefile | |||
@@ -0,0 +1,15 @@ | |||
1 | PROG := test-vphn | ||
2 | |||
3 | CFLAGS += -m64 | ||
4 | |||
5 | all: $(PROG) | ||
6 | |||
7 | $(PROG): ../harness.c | ||
8 | |||
9 | run_tests: all | ||
10 | ./$(PROG) | ||
11 | |||
12 | clean: | ||
13 | rm -f $(PROG) | ||
14 | |||
15 | .PHONY: all run_tests clean | ||