Files
TheBandwidthBenchmark/include_GCC.mk
Jan Eitzinger 86e57fd554 Add info target
2021-01-18 07:53:38 +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 =