Branch Checkpoint

This commit is contained in:
indiano
2025-05-01 21:48:47 +02:00
parent 765883ab88
commit 5148069114
20 changed files with 755 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
CC = icc
GCC = gcc
LINKER = $(CC)
ifeq ($(ENABLE_OPENMP),true)
OPENMP = -qopenmp
endif
VERSION = --version
CFLAGS = -O3 -xHost -qopt-zmm-usage=high -std=c99 $(OPENMP)
LFLAGS = $(OPENMP)
DEFINES = -D_GNU_SOURCE
INCLUDES =
LIBS =