Makefile 304 B

1234567891011121314151617
  1. TEST_PROGS := gettimeofday context_switch mmap_bench futex_bench
  2. CFLAGS += -O2
  3. all: $(TEST_PROGS)
  4. $(TEST_PROGS): ../harness.c
  5. context_switch: ../utils.c
  6. context_switch: CFLAGS += -maltivec -mvsx -mabi=altivec
  7. context_switch: LDLIBS += -lpthread
  8. include ../../lib.mk
  9. clean:
  10. rm -f $(TEST_PROGS) *.o