CC = icc GCC = gcc LINKER = $(CC) ifeq ($(ENABLE_OPENMP),true) OPENMP = -qopenmp endif CFLAGS = -qopt-report -Ofast -xHost -std=c99 -ffreestanding $(OPENMP) LFLAGS = $(OPENMP) DEFINES = -D_GNU_SOURCE INCLUDES = LIBS =