Makefile (f2418ae8a81760b4dec8d5e3e7f1faf45c422e9d) Makefile (0c63e8b7b97fb72ef38c8edbfbe751d3602e03a1)
1TEST_PROGS := gettimeofday context_switch
1TEST_PROGS := gettimeofday context_switch mmap_bench futex_bench
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
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