aboutsummaryrefslogtreecommitdiff
path: root/2024/07/Makefile
blob: 63f62cdc2745f354862fd080c62acddd763cc86f (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 day07a.cpp

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