Fix bug if ANIMATE define is set Move all defines to config.mk Add clangd generation in Makefile Move ICC to ICX config
16 lines
288 B
Makefile
16 lines
288 B
Makefile
CC = icx
|
|
GCC = gcc
|
|
LINKER = $(CC)
|
|
|
|
ifeq ($(ENABLE_OPENMP),true)
|
|
OPENMP = -qopenmp
|
|
endif
|
|
|
|
VERSION = --version
|
|
CFLAGS = -O3 -xHost -std=c99 $(OPENMP)
|
|
#CFLAGS += -qopt-zmm-usage=high #on CPUs with AVX512 support
|
|
LFLAGS = $(OPENMP)
|
|
DEFINES = -D_GNU_SOURCE
|
|
INCLUDES =
|
|
LIBS =
|