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 @@ +PROG := test-vphn + +CFLAGS += -m64 + +all: $(PROG) + +$(PROG): ../harness.c + +run_tests: all + ./$(PROG) + +clean: + rm -f $(PROG) + +.PHONY: all run_tests clean |