CFLAGS = -fopenmp -Wall -std=gnu1x
LDLIBS = -lm -lgomp

all:out.txt
	cat $<

N=1e8
out.txt:main
	time --append --portability --output $@ ./$< $N > $@

clean:
	$(RM) main out.txt
