tegrakernel/kernel/kernel-4.9/tools/testing/selftests/powerpc/benchmarks/Makefile

17 lines
304 B
Makefile
Raw Normal View History

2022-02-16 09:13:02 -06:00
TEST_PROGS := gettimeofday context_switch mmap_bench futex_bench
CFLAGS += -O2
all: $(TEST_PROGS)
$(TEST_PROGS): ../harness.c
context_switch: ../utils.c
context_switch: CFLAGS += -maltivec -mvsx -mabi=altivec
context_switch: LDLIBS += -lpthread
include ../../lib.mk
clean:
rm -f $(TEST_PROGS) *.o