Makefile 303 B

12345678910111213141516171819
  1. noarg:
  2. $(MAKE) -C ../
  3. TEST_PROGS := hugetlb_vs_thp_test subpage_prot prot_sao
  4. TEST_FILES := tempfile
  5. all: $(TEST_PROGS) $(TEST_FILES)
  6. $(TEST_PROGS): ../harness.c
  7. prot_sao: ../utils.c
  8. include ../../lib.mk
  9. tempfile:
  10. dd if=/dev/zero of=tempfile bs=64k count=1
  11. clean:
  12. rm -f $(TEST_PROGS) tempfile