commit 2c440e0548d15ffb62cf4472240588b9eb220e46 parent d3341a010cf05403d0fc1c3899270ea56976acec Author: Sebastiano Tronto <sebastiano@tronto.net> Date: Thu, 19 Dec 2024 07:05:02 +0100 Removem vim temp file; simplified template Diffstat:
M | .gitignore | | | 1 | + |
D | 2024/19/.day19b.cpp.swp | | | 0 | |
M | 2024/template.make | | | 17 | ++--------------- |
3 files changed, 3 insertions(+), 15 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -1,2 +1,3 @@ */*/*.out */*/*.txt +*/*/.swp diff --git a/2024/19/.day19b.cpp.swp b/2024/19/.day19b.cpp.swp Binary files differ. diff --git a/2024/template.make b/2024/template.make @@ -2,23 +2,10 @@ CC=g++ -std=c++20 -g -Wall a: ${CC} -o a.out dayDAYa.cpp + ./a.out b: ${CC} -o b.out dayDAYb.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 +.PHONY: a b