Files
TheBandwidthBenchmark/include_CLANG.mk
2020-12-09 08:44:50 +01:00

14 lines
237 B
Makefile

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