aboutsummaryrefslogtreecommitdiff
path: root/2024/11/Makefile
blob: a5d27bb29c790d0fda905b23fe0cb627fb653bcc (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 day11a.cpp

b:
	${CC} -o b.out day11b.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