xref: /linux/tools/testing/selftests/powerpc/mm/Makefile (revision 93d90ad708b8da6efc0e487b66111aa9db7f70c7)
1noarg:
2	$(MAKE) -C ../
3
4PROGS := hugetlb_vs_thp_test
5
6all: $(PROGS)
7
8$(PROGS): ../harness.c
9
10run_tests: all
11	@-for PROG in $(PROGS); do \
12		./$$PROG; \
13	done;
14
15clean:
16	rm -f $(PROGS)
17
18.PHONY: all run_tests clean
19