about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
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