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