blob: 357ccbd6bad9f0e038a605b1f945b9cbba717bae [file] [log] [blame]
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