CC = gcc
CFLAGS = -O3 -g -fopenmp -Wall

bigsum: bigsum.c cycletimer.c
	$(CC) $(CFLAGS) -o bigsum bigsum.c cycletimer.c

