mirror of
https://github.com/RRZE-HPC/ibench.git
synced 2026-01-11 23:27:06 +01:00
11 lines
439 B
Makefile
11 lines
439 B
Makefile
CC = gcc
|
|
AS = gcc
|
|
CFLAGS = -O3 -x assembler-with-cpp
|
|
ASFLAGS = -O3 -x assembler-with-cpp
|
|
LFLAGS = -shared
|
|
|
|
KERNELS += $(patsubst $(SRC_DIR)/%.S, %.so, $(wildcard $(SRC_DIR)/BASE-X86/*.S))
|
|
KERNELS += $(patsubst $(SRC_DIR)/%.S, %.so, $(wildcard $(SRC_DIR)/SSE4.2/*.S))
|
|
KERNELS += $(patsubst $(SRC_DIR)/%.S, %.so, $(wildcard $(SRC_DIR)/AVX2/*.S))
|
|
KERNELS += $(patsubst $(SRC_DIR)/%.S, %.so, $(wildcard $(SRC_DIR)/AVX512/*.S))
|