adventofcode/2021/1/Makefile

12 lines
114 B
Makefile
Raw Normal View History

2022-12-01 21:02:00 +01:00
.PHONY := all yeet
all: build run
build:
gcc -o depth depth.c
gcc -o depth2 depth2.c
run:
./depth
./depth2