You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
337 B
12 lines
337 B
# SPDX-License-Identifier: GPL-2.0
|
|
TEST_GEN_PROGS := gettimeofday context_switch mmap_bench futex_bench null_syscall
|
|
|
|
CFLAGS += -O2
|
|
|
|
include ../../lib.mk
|
|
|
|
$(TEST_GEN_PROGS): ../harness.c
|
|
|
|
$(OUTPUT)/context_switch: ../utils.c
|
|
$(OUTPUT)/context_switch: CFLAGS += -maltivec -mvsx -mabi=altivec
|
|
$(OUTPUT)/context_switch: LDLIBS += -lpthread
|
|
|