Files
BasicSolver
2D-mpi
src
Makefile
README.md
canal.par
config.mk
dcavity.par
include_CLANG.mk
include_GCC.mk
include_ICC.mk
surface.plot
vector.plot
velocity.png
2D-mpi-v1
2D-mpi-v2
2D-mpi-v3
2D-seq
2D-seq-pt
3D-mpi
3D-mpi-io
3D-seq
README.md
PoissonSolver
.clang-format
.clang-tidy
.clangd
.gitignore
LICENSE
README.md
NuSiF-Solver/BasicSolver/2D-mpi/include_GCC.mk
Jan Eitzinger 213e633a4d Initial checkin
2023-02-05 07:34:23 +01:00

15 lines
235 B
Makefile

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