First server executable

This commit is contained in:
2026-06-22 13:20:10 +03:00
parent ea99e81dbf
commit 6ff7c8a6cb
8 changed files with 245 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
srcs += main.cpp
srcs += helpers.cpp
all:
g++ ${srcs} -o server
.PHONY: all