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