all:out.txt
	cat $<

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

clean:
	$(RM) out.*
	rm -rf __pycache__
