Files
NuSiF-Solver/PoissonSolver/2D-seq/include_GCC.mk
Jan Eitzinger 38a96ddf8d Fix bugs and improve build system
Fix bug if ANIMATE define is set
Move all defines to config.mk
Add clangd generation in Makefile
Move ICC to ICX config
2025-11-05 10:29:31 +01:00

15 lines
248 B
Makefile

CC = gcc
GCC = gcc
LINKER = $(CC)
ifeq ($(ENABLE_OPENMP),true)
OPENMP = -fopenmp
endif
VERSION = --version
CFLAGS = -O3 -ffast-math -ffreestanding -std=c99 $(OPENMP)
LFLAGS = $(OPENMP)
DEFINES = -D_GNU_SOURCE
INCLUDES =
LIBS = -lm