aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--2024/19/.day19b.cpp.swpbin12288 -> 0 bytes
-rw-r--r--2024/template.make17
3 files changed, 3 insertions, 15 deletions
diff --git a/.gitignore b/.gitignore
index d220b52..e436bca 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
1*/*/*.out 1*/*/*.out
2*/*/*.txt 2*/*/*.txt
3*/*/.swp
diff --git a/2024/19/.day19b.cpp.swp b/2024/19/.day19b.cpp.swp
deleted file mode 100644
index c95c362..0000000
--- a/2024/19/.day19b.cpp.swp
+++ /dev/null
Binary files differ
diff --git a/2024/template.make b/2024/template.make
index 4499650..b1eeb1a 100644
--- a/2024/template.make
+++ b/2024/template.make
@@ -2,23 +2,10 @@ CC=g++ -std=c++20 -g -Wall
2 2
3a: 3a:
4 ${CC} -o a.out dayDAYa.cpp 4 ${CC} -o a.out dayDAYa.cpp
5 ./a.out
5 6
6b: 7b:
7 ${CC} -o b.out dayDAYb.cpp 8 ${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 9 ./b.out
17 10
18arun: a 11.PHONY: a b
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