aboutsummaryrefslogtreecommitdiff
path: root/2024/template.make
diff options
context:
space:
mode:
Diffstat (limited to '2024/template.make')
-rw-r--r--2024/template.make24
1 files changed, 24 insertions, 0 deletions
diff --git a/2024/template.make b/2024/template.make
new file mode 100644
index 0000000..4499650
--- /dev/null
+++ b/2024/template.make
@@ -0,0 +1,24 @@
1CC=g++ -std=c++20 -g -Wall
2
3a:
4 ${CC} -o a.out dayDAYa.cpp
5
6b:
7 ${CC} -o b.out dayDAYb.cpp
8
9clean:
10 rm -f a b
11
12atest: a
13 ./a.out
14
15btest: b
16 ./b.out
17
18arun: a
19 ./a.out < input
20
21brun: b
22 ./b.out < input
23
24.PHONY: a b clean atest btest arun brun

Generated with cgit - Back to sebastiano.tronto.net