all:out.txt
	cat $<

out.txt: main.py qr.py ../matrix/matrix.py
	python3 $< > $@

clean:
	rm -rf __pycache__ out.txt
