CC = gcc
CFLAGS = -Wall -fwrapv

.PHONEY: default
default: Out.txt
	cat $<

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

.PHONEY: clean
clean:
	$(RM) main Out.txt
