12 lines
133 B
Makefile
12 lines
133 B
Makefile
.PHONY := all build run
|
|
|
|
all: build run
|
|
|
|
build:
|
|
gfortran -o depth depth.f90
|
|
gfortran -o depth2 depth2.f90
|
|
|
|
run:
|
|
./depth
|
|
./depth2
|