adventofcode/2021/2/Makefile
2022-12-01 21:02:00 +01:00

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