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