Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 04974df8049fc4240d22759a91e035082ccd18b4 authored by Linus Torvalds on 01 May 2016, 22:52:31 UTC
Linux 4.6-rc6
Tip revision: 04974df
Makefile
noarg:
	$(MAKE) -C ../

TEST_PROGS := hugetlb_vs_thp_test subpage_prot
TEST_FILES := tempfile

all: $(TEST_PROGS) $(TEST_FILES)

$(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