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