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-rc3 17 lines 218 B view raw
1CFLAGS += -I$(CURDIR) 2 3PROGS := load_unaligned_zeropad 4 5all: $(PROGS) 6 7$(PROGS): ../harness.c 8 9run_tests: all 10 @-for PROG in $(PROGS); do \ 11 ./$$PROG; \ 12 done; 13 14clean: 15 rm -f $(PROGS) *.o 16 17.PHONY: all run_tests clean