2014-05-28 18:21:18 +10:00
|
|
|
noarg:
|
|
|
|
|
$(MAKE) -C ../
|
|
|
|
|
|
2015-03-11 15:06:01 +11:00
|
|
|
TEST_PROGS := hugetlb_vs_thp_test subpage_prot
|
2014-05-28 18:21:18 +10:00
|
|
|
|
2015-03-11 15:06:01 +11:00
|
|
|
all: $(TEST_PROGS) tempfile
|
2014-05-28 18:21:18 +10:00
|
|
|
|
2015-03-11 15:06:01 +11:00
|
|
|
$(TEST_PROGS): ../harness.c
|
2014-05-28 18:21:18 +10:00
|
|
|
|
2015-03-11 15:06:01 +11:00
|
|
|
include ../../lib.mk
|
2014-05-28 18:21:18 +10:00
|
|
|
|
2014-12-09 11:44:07 +05:30
|
|
|
tempfile:
|
|
|
|
|
dd if=/dev/zero of=tempfile bs=64k count=1
|
|
|
|
|
|
2014-05-28 18:21:18 +10:00
|
|
|
clean:
|
2015-03-11 15:06:01 +11:00
|
|
|
rm -f $(TEST_PROGS) tempfile
|