diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-03-21 16:17:20 +0100 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-03-21 16:17:20 +0100 |
| commit | f1af8679481cfc4199b6423d723f67188145ea46 (patch) | |
| tree | 62d25d33bab6a2ba150659a35155977131e67237 /Makefile | |
| parent | 2a22b4123dce661b0500dc07012d61215bdce161 (diff) | |
| download | BT-Programming-Assignment-f1af8679481cfc4199b6423d723f67188145ea46.tar.gz BT-Programming-Assignment-f1af8679481cfc4199b6423d723f67188145ea46.zip | |
client: add client class with input processing
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
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 |