CFLAGS = -pthread
LDLIBS = -pthread

all:out.txt
	cat $<

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

clean:
	$(RM) main out.txt
