Files
aoc25/03-joltage/Makefile
2025-12-03 10:13:36 +01:00

13 lines
116 B
Makefile

all: test
.PHONY: test clean
aoc3: aoc3.c
cc -O2 -o $@ $<
clean:
-rm -f aoc3
test: aoc3
./aoc3 < input01.txt