# Makefile definitions # Compiler used to compile the C code CC = gcc # Compiler flags used to compile the timing code CFLAGS = -O3 # Compiler used to compile the microbenchmarking suite UPCC = upcc # Compiler flags UPCFLAGS = -Wc,-O3 -pthreads -DBUPC_USE_UPC_NAMESPACE # Switch used for define the number of threads (be aware of blanks after the switch) THREADS_SWITCH = -T # Linker UPCLINK = $(UPCC) # Linker flags UPCLINKFLAGS = -Wl,-O3 -pthreads -lm