summaryrefslogtreecommitdiffstats
path: root/src/client/gui/Makefile
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2020-12-08 12:48:16 +0000
committerJoursoir <chat@joursoir.net>2020-12-08 12:48:16 +0000
commit27cd9aded215835ffde615153600476bf9be2473 (patch)
tree0018a18a3d1b5891321d8218001c02128af82380 /src/client/gui/Makefile
parentf7bd80577164da7540ad93fb2fa93df38168133b (diff)
downloadwant-chat-27cd9aded215835ffde615153600476bf9be2473.tar.gz
want-chat-27cd9aded215835ffde615153600476bf9be2473.tar.bz2
want-chat-27cd9aded215835ffde615153600476bf9be2473.zip
create base class for all client, add some functionality to gui
Diffstat (limited to 'src/client/gui/Makefile')
-rw-r--r--src/client/gui/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/gui/Makefile b/src/client/gui/Makefile
index 67ff3e2..a72e64d 100644
--- a/src/client/gui/Makefile
+++ b/src/client/gui/Makefile
@@ -1,7 +1,7 @@
CPP = g++
CPPFLAGS = -Wall -g -lfltk
-SOURCES = client.cpp OO_FLTK.cpp
-OBJECTS = $(SOURCES:.cpp=.o)
+SOURCES = main.cpp OO_FLTK.cpp ../ClientBase.cpp Client.cpp
+OBJECTS = main.o OO_FLTK.o ClientBase.o Client.o
EXECUTABLE = client
.PHONY: all clean