rtc: rtc-ab-b5ze-s3: add sub-minute alarm support
[linux/fpc-iii.git] / tools / testing / selftests / powerpc / mm / Makefile
bloba14c538dd7f8d6068fe80bc4427a8e72e0cb94e6
1 noarg:
2 $(MAKE) -C ../
4 PROGS := hugetlb_vs_thp_test subpage_prot
6 all: $(PROGS) tempfile
8 $(PROGS): ../harness.c
10 run_tests: all
11 @-for PROG in $(PROGS); do \
12 ./$$PROG; \
13 done;
15 tempfile:
16 dd if=/dev/zero of=tempfile bs=64k count=1
18 clean:
19 rm -f $(PROGS) tempfile
21 .PHONY: all run_tests clean