summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-10-22 19:41:51 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-10-22 19:41:51 +0000
commiteddcc3dfa9d3e5b45675de6287f0a359893b1bc1 (patch)
tree24b8c0bfbbac55730e8642a6b0046cf56e1fb86a /Makefile
parentfd35b6f836565d2d46b8c9869f8ea6590face8d6 (diff)
Split the server code handling clients, jobs and windows off into separate
files from server.c (merging server-msg.c into the client file) and rather than iterating over each set after poll(), allow a callback to be specified when the fd is added and just walk once over the returned pollfds calling each callback where needed. More to come, getting this in so it is tested.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index cf856b6c..e6b8b1dd 100644
--- a/Makefile
+++ b/Makefile
@@ -34,10 +34,11 @@ SRCS= attributes.c buffer-poll.c buffer.c cfg.c \
imsg.c imsg-buffer.c input.c key-bindings.c key-string.c \
layout-set.c layout.c log.c job.c \
mode-key.c names.c options-cmd.c options.c paste.c procname.c \
- resize.c screen-redraw.c screen-write.c screen.c server-fn.c \
- server-msg.c server.c session.c status.c tmux.c tty-keys.c tty-term.c \
- tty.c utf8.c window-choose.c window-clock.c \
- window-copy.c window-more.c window.c xmalloc.c
+ resize.c screen-redraw.c screen-write.c screen.c session.c status.c \
+ server-fn.c server.c server-client.c server-window.c server-job.c \
+ tmux.c tty-keys.c tty-term.c tty.c utf8.c \
+ window-choose.c window-clock.c window-copy.c window-more.c window.c \
+ xmalloc.c
CDIAGFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
CDIAGFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations