Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 33688abb2802ff3a230bd2441f765477b94cc89e authored by Linus Torvalds on 20 June 2016, 04:30:02 UTC
Linux 4.7-rc4
Tip revision: 33688ab
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