summaryrefslogtreecommitdiff
path: root/powerpc/mm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'powerpc/mm/Makefile')
-rw-r--r--powerpc/mm/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/powerpc/mm/Makefile b/powerpc/mm/Makefile
index 357ccbd..a14c538 100644
--- a/powerpc/mm/Makefile
+++ b/powerpc/mm/Makefile
@@ -1,9 +1,9 @@
noarg:
$(MAKE) -C ../
-PROGS := hugetlb_vs_thp_test
+PROGS := hugetlb_vs_thp_test subpage_prot
-all: $(PROGS)
+all: $(PROGS) tempfile
$(PROGS): ../harness.c
@@ -12,7 +12,10 @@ run_tests: all
./$$PROG; \
done;
+tempfile:
+ dd if=/dev/zero of=tempfile bs=64k count=1
+
clean:
- rm -f $(PROGS)
+ rm -f $(PROGS) tempfile
.PHONY: all run_tests clean