Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: fc14f9c1272f62c3e8d01300f52467c0d9af50f9 authored by Linus Torvalds on 17 November 2014, 00:36:20 UTC
Linux 3.18-rc5
Tip revision: fc14f9c
Makefile
noarg:
	$(MAKE) -C ../

PROGS := hugetlb_vs_thp_test

all: $(PROGS)

$(PROGS): ../harness.c

run_tests: all
	@-for PROG in $(PROGS); do \
		./$$PROG; \
	done;

clean:
	rm -f $(PROGS)

.PHONY: all run_tests clean
back to top