Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / 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