Files
TheBandwidthBenchmark/include_ICC.mk
2019-03-13 16:24:59 +01:00

13 lines
212 B
Makefile

CC = icc
LINKER = $(CC)
ifeq ($(ENABLE_OPENMP),true)
OPENMP = -qopenmp
endif
CFLAGS = -Ofast -xhost -std=c99 -pthread $(OPENMP)
LFLAGS = -pthread $(OPENMP)
DEFINES = -D_GNU_SOURCE
INCLUDES =
LIBS =