remove scatterlist.h generation from arch Kbuild files
[firefly-linux-kernel-4.4.55.git] / tools / testing / selftests / powerpc / vphn / Makefile
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