.PHONY := all build run all: build run build: gfortran -o depth depth.f90 gfortran -o depth2 depth2.f90 run: ./depth ./depth2