linux/tools/testing/selftests/powerpc/mm/Makefile
<<
>>
Prefs
   1noarg:
   2        $(MAKE) -C ../
   3
   4TEST_PROGS := hugetlb_vs_thp_test subpage_prot
   5TEST_FILES := tempfile
   6
   7all: $(TEST_PROGS) $(TEST_FILES)
   8
   9$(TEST_PROGS): ../harness.c
  10
  11include ../../lib.mk
  12
  13tempfile:
  14        dd if=/dev/zero of=tempfile bs=64k count=1
  15
  16clean:
  17        rm -f $(TEST_PROGS) tempfile
  18