about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-03-21 16:17:20 +0100
committerChristian Krinitsin <mail@krinitsin.com>2025-03-21 16:17:20 +0100
commitf1af8679481cfc4199b6423d723f67188145ea46 (patch)
tree62d25d33bab6a2ba150659a35155977131e67237 /Makefile
parent2a22b4123dce661b0500dc07012d61215bdce161 (diff)
downloadBT-Programming-Assignment-f1af8679481cfc4199b6423d723f67188145ea46.tar.gz
BT-Programming-Assignment-f1af8679481cfc4199b6423d723f67188145ea46.zip
client: add client class with input processing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b526fed..7c250ef 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ CXXFLAGS := -std=c++23 -Wall -Wextra -Wpedantic -O3 -Isrc/common
 all: server client
 server: src/server/main.cpp
 	${CXX} ${CXXFLAGS} $^ -o $@ 
-client: src/client/main.cpp
+client: src/client/main.cpp src/client/client.cpp
 	${CXX} ${CXXFLAGS} $^ -o $@
 
 .PHONY: clean