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

all:out.txt
	cat $<

out.txt:main
	./$< 1>$@ 2>log
main:main.o amoeba.o
main.o amoeba.o:amoeba.h real.h

clean:
	rm -f main *.o out* log*
