aboutsummaryrefslogtreecommitdiff
path: root/2024/10/Makefile
blob: 021144160f5c3d8aec4ffc2bf3b6e680b7c90fd1 (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 day10a.cpp

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