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 v4.0 15 lines 188 B view raw
1PROGS := tm-resched-dscr 2 3all: $(PROGS) 4 5$(PROGS): ../harness.c 6 7run_tests: all 8 @-for PROG in $(PROGS); do \ 9 ./$$PROG; \ 10 done; 11 12clean: 13 rm -f $(PROGS) *.o 14 15.PHONY: all run_tests clean