CFLAGS = -Wall -O --std=c99
LDLIBS = -lm

all: out.txt
out.txt: adapt ; ./$< | tee $@
adapt: adapt.o
clean: ; rm -f adapt adapt.o out.txt
