Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0
2
3CFLAGS += -I../../../../../usr/include/
4TEST_GEN_PROGS := sve-ptrace sve-probe-vls
5TEST_PROGS_EXTENDED := fpsimd-test fpsimd-stress sve-test sve-stress vlset
6
7all: $(TEST_GEN_PROGS) $(TEST_PROGS_EXTENDED)
8
9fpsimd-test: fpsimd-test.o
10 $(CC) -nostdlib $^ -o $@
11sve-ptrace: sve-ptrace.o sve-ptrace-asm.o
12sve-probe-vls: sve-probe-vls.o
13sve-test: sve-test.o
14 $(CC) -nostdlib $^ -o $@
15vlset: vlset.o
16
17include ../../lib.mk