13 lines
116 B
Makefile
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
|