linux/tools/testing/selftests/powerpc/mm/Makefile

19 lines
212 B
Makefile
Raw Normal View History

noarg:
$(MAKE) -C ../
PROGS := hugetlb_vs_thp_test
all: $(PROGS)
$(PROGS): ../harness.c
run_tests: all
@-for PROG in $(PROGS); do \
./$$PROG; \
done;
clean:
rm -f $(PROGS)
.PHONY: all run_tests clean