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.10-rc4 16 lines 317 B view raw
1TEST_PROGS := gettimeofday context_switch mmap_bench futex_bench null_syscall 2 3CFLAGS += -O2 4 5all: $(TEST_PROGS) 6 7$(TEST_PROGS): ../harness.c 8 9context_switch: ../utils.c 10context_switch: CFLAGS += -maltivec -mvsx -mabi=altivec 11context_switch: LDLIBS += -lpthread 12 13include ../../lib.mk 14 15clean: 16 rm -f $(TEST_PROGS) *.o