From 616af4d6944d9c6436e36ab1ef38238819ccea64 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Sun, 4 Dec 2022 17:36:44 +0200 Subject: Added Rust solution for day3 and day4 --- 2022/Cpp/Day2/Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 2022/Cpp/Day2/Makefile (limited to '2022/Cpp/Day2/Makefile') diff --git a/2022/Cpp/Day2/Makefile b/2022/Cpp/Day2/Makefile new file mode 100644 index 0000000..08000ae --- /dev/null +++ b/2022/Cpp/Day2/Makefile @@ -0,0 +1,5 @@ +all: + @g++ main.cpp -o ans.o + +run: + ./ans.o < input.txt -- cgit v1.2.3