NuSiF-Solver/EnhancedSolver/2D-seq/include_CLANG.mk

20 lines
383 B
Makefile
Raw Permalink Normal View History

2024-02-15 09:44:06 +01:00
CC = clang
GCC = cc
LINKER = $(CC)
2024-03-05 21:24:45 +01:00
ifeq ($(strip $(ENABLE_OPENMP)),true)
2024-02-15 09:44:06 +01:00
OPENMP = -fopenmp
#OPENMP = -Xpreprocessor -fopenmp #required on Macos with homebrew libomp
LIBS = # -lomp
endif
2024-03-05 21:24:45 +01:00
ifeq ($(strip $(DEBUG)),true)
CFLAGS = -O0 -g -std=c17
else
CFLAGS = -O3 -std=c17 $(OPENMP)
endif
2024-02-15 09:44:06 +01:00
VERSION = --version
LFLAGS = $(OPENMP) -lm
2024-03-05 21:24:45 +01:00
DEFINES = -D_GNU_SOURCE
2024-02-15 09:44:06 +01:00
INCLUDES =