Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.18 18 lines 212 B view raw
1noarg: 2 $(MAKE) -C ../ 3 4PROGS := hugetlb_vs_thp_test 5 6all: $(PROGS) 7 8$(PROGS): ../harness.c 9 10run_tests: all 11 @-for PROG in $(PROGS); do \ 12 ./$$PROG; \ 13 done; 14 15clean: 16 rm -f $(PROGS) 17 18.PHONY: all run_tests clean