CFLAGS = -Wall -std=gnu11 -O -fopenmp
LDLIBS = -lm -lgomp

all: out.txt
	cat $<

out.txt: main
	./$< > $@

clean:
	$(RM) main out.txt
