CC     = gcc
CFLAGS = -std=c11 -fopenmp -Wall -Wextra -Wpedantic -O2 -g
LDLIBS = -lm

checkpoint: checkpoint.c

clean:
	$(RM) checkpoint
