# Makefile definitions # Compiler used to compile the C code CC = icc # Compiler flags used to compile the timing code CFLAGS = -O3 # Compiler used to compile the microbenchmarking suite UPCC = upc # Compiler flags UPCFLAGS = -O3 -upc_backend icc -smp # Switch used for define the number of threads (be aware of blanks after the switch) THREADS_SWITCH = -fthreads # Linker UPCLINK = $(UPCC) # Linker flags UPCLINKFLAGS = $(UPCFLAGS)