aboutsummaryrefslogtreecommitdiff
path: root/2024/14/Makefile
blob: 7f11c277c4ee3393d330dc3bed99643969a86df4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
CC=g++ -std=c++20 -g -Wall

a:
	${CC} -o a.out day14a.cpp

b:
	${CC} -o b.out day14b.cpp

clean:
	rm -f a b

atest: a
	./a.out

btest: b
	./b.out

arun: a
	./a.out < input

brun: b
	./b.out < input

.PHONY: a b clean atest btest arun brun

Generated with cgit - Back to sebastiano.tronto.net