Makefile 317 字节
Newer Older
1
TEST_PROGS := gettimeofday context_switch mmap_bench futex_bench null_syscall
2 3 4 5 6 7 8

CFLAGS += -O2

all: $(TEST_PROGS)

$(TEST_PROGS): ../harness.c

9
context_switch: ../utils.c
10
context_switch: CFLAGS += -maltivec -mvsx -mabi=altivec
11 12
context_switch: LDLIBS += -lpthread

13 14 15 16
include ../../lib.mk

clean:
	rm -f $(TEST_PROGS) *.o