From b8325cecebbc922dc877cb6a6ab7f818602d4586 Mon Sep 17 00:00:00 2001 From: matv864 Date: Mon, 13 Jan 2025 02:52:52 +1000 Subject: [PATCH] add Makefile in task_5 --- .gitignore | 4 +++- task_5/Makefile | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 task_5/Makefile diff --git a/.gitignore b/.gitignore index 9e35465..a1bc07e 100644 --- a/.gitignore +++ b/.gitignore @@ -8,11 +8,13 @@ # auto-generating trash from cmake build/ CMakeFiles/ -Makefile CMakeCache.txt *.cmake *.a +task_1_2/Makefile +task_3/Makefile + # for task3 counter.txt \ No newline at end of file diff --git a/task_5/Makefile b/task_5/Makefile new file mode 100644 index 0000000..43fe87f --- /dev/null +++ b/task_5/Makefile @@ -0,0 +1,2 @@ +default_target: + g++ socket_up.cpp socket_handler.cpp main.cpp -o main -lws2_32 && main.exe \ No newline at end of file