1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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