1noarg:
2	$(MAKE) -C ../
3
4TEST_PROGS := hugetlb_vs_thp_test subpage_prot
5
6all: $(TEST_PROGS) tempfile
7
8$(TEST_PROGS): ../harness.c
9
10include ../../lib.mk
11
12tempfile:
13	dd if=/dev/zero of=tempfile bs=64k count=1
14
15clean:
16	rm -f $(TEST_PROGS) tempfile
17