all: out.txt
	cat $<

out.txt: main.py adaptive_newton_cotes.py
	python3 $< > $@

clean:
	rm -rf out* __pycache__
