blob: 357ccbd6bad9f0e038a605b1f945b9cbba717bae (
plain)
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
|