Files
TheBandwidthBenchmark/MainMemory/include_CLANG.mk
2019-06-29 10:24:53 +02:00

13 lines
204 B
Makefile

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