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