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

12 lines
114 B
Makefile

.PHONY := all yeet
all: build run
build:
gcc -o depth depth.c
gcc -o depth2 depth2.c
run:
./depth
./depth2