CFLAGS += -Wall -std=c11
LDLIBS += -lm

all:Out.txt
	cat $<

Out.txt: main
	./$< 1>$@ 2>log

main:main.o broyden.o

clean:
	rm -f main *.o [Oo]ut* log*
