From 509f58966da1c4da1b532fc5a2e271eeae7afd10 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 19 Dec 2024 07:05:02 +0100 Subject: Removem vim temp file; simplified template --- .gitignore | 1 + 2024/19/.day19b.cpp.swp | Bin 12288 -> 0 bytes 2024/template.make | 17 ++--------------- 3 files changed, 3 insertions(+), 15 deletions(-) delete mode 100644 2024/19/.day19b.cpp.swp diff --git a/.gitignore b/.gitignore index d220b52..e436bca 100644 --- 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 deleted file mode 100644 index c95c362..0000000 Binary files a/2024/19/.day19b.cpp.swp and /dev/null 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 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 -- cgit v1.3