Files
TheBandwidthBenchmark/include_CLANG.mk
Jan Eitzinger 86e57fd554 Add info target
2021-01-18 07:53:38 +01:00

16 lines
294 B
Makefile

CC = clang
GCC = gcc
LINKER = $(CC)
ifeq ($(ENABLE_OPENMP),true)
OPENMP = -fopenmp
endif
VERSION = --version
CFLAGS = -Ofast -std=c99 $(OPENMP)
#CFLAGS = -Ofast -fnt-store=aggressive -std=c99 $(OPENMP) #AMD CLANG
LFLAGS = $(OPENMP)
DEFINES = -D_GNU_SOURCE
INCLUDES =
LIBS =