CFLAGS = -pthread -O -Wall -std=gnu11
LDLIBS = -lm

all: out.txt
	cat $<

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

clean:
	$(RM) main out.txt
