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

15 lines
235 B
Makefile
Raw Normal View History

2024-02-15 09:44:06 +01:00
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 =