all:out.txt
	cat $<
out.txt: main.py ../matrix/matrix.py ../qr.givens/givens.py newton.py
	python3 $< > $@

clean:
	rm -rf __pycache__
	rm -f out*
