FC = ifort
FFLAGS = -g -traceback -xHost -qopt-report=5 -qopt-report-phase=vec -qopenmp-simd

heatnum : heatnum.f90
	$(FC) $(FFLAGS) -o $@ $<

.PHONY : clean
clean :
	rm -f heatnum heatnum.optrpt
