Makefile (3eb66e91a25497065c5322b1268cbc3953642227) | Makefile (16391bfc862342f285195013b73c1394fab28b97) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2noarg: 3 $(MAKE) -C ../ 4 | 1# SPDX-License-Identifier: GPL-2.0 2noarg: 3 $(MAKE) -C ../ 4 |
5TEST_GEN_PROGS := hugetlb_vs_thp_test subpage_prot prot_sao segv_errors wild_bctr | 5TEST_GEN_PROGS := hugetlb_vs_thp_test subpage_prot prot_sao segv_errors wild_bctr \ 6 large_vm_fork_separation |
6TEST_GEN_FILES := tempfile 7 8top_srcdir = ../../../../.. 9include ../../lib.mk 10 11$(TEST_GEN_PROGS): ../harness.c 12 13$(OUTPUT)/prot_sao: ../utils.c 14 15$(OUTPUT)/wild_bctr: CFLAGS += -m64 | 7TEST_GEN_FILES := tempfile 8 9top_srcdir = ../../../../.. 10include ../../lib.mk 11 12$(TEST_GEN_PROGS): ../harness.c 13 14$(OUTPUT)/prot_sao: ../utils.c 15 16$(OUTPUT)/wild_bctr: CFLAGS += -m64 |
17$(OUTPUT)/large_vm_fork_separation: CFLAGS += -m64 |
|
16 17$(OUTPUT)/tempfile: 18 dd if=/dev/zero of=$@ bs=64k count=1 19 | 18 19$(OUTPUT)/tempfile: 20 dd if=/dev/zero of=$@ bs=64k count=1 21 |