Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: b787f68c36d49bb1d9236f403813641efa74a031 authored by Linus Torvalds on 27 April 2015, 00:59:10 UTC
Linux 4.1-rc1
Tip revision: b787f68
Makefile
noarg:
	$(MAKE) -C ../

TEST_PROGS := hugetlb_vs_thp_test subpage_prot

all: $(TEST_PROGS) tempfile

$(TEST_PROGS): ../harness.c

include ../../lib.mk

tempfile:
	dd if=/dev/zero of=tempfile bs=64k count=1

clean:
	rm -f $(TEST_PROGS) tempfile
back to top