Makefile 244 B

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