Sync with Makefile.

This commit is contained in:
Nicholas Marriott 2007-12-13 18:59:42 +00:00
parent c6efbbb843
commit da22fafed5
3 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# $Id: GNUmakefile,v 1.9 2007-12-06 09:46:21 nicm Exp $
# $Id: GNUmakefile,v 1.10 2007-12-13 18:59:42 nicm Exp $
.PHONY: clean
@ -13,7 +13,7 @@ META?= \002
SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c status.c \
xmalloc.c xmalloc-debug.c input.c input-keys.c screen.c screen-display.c \
window.c session.c local.c log.c client.c client-msg.c client-fn.c \
window.c session.c log.c client.c client-msg.c client-fn.c \
key-string.c key-bindings.c resize.c cmd.c cmd-new-session.c \
cmd-detach-client.c cmd-list-sessions.c cmd-new-window.c cmd-bind-key.c \
cmd-unbind-key.c cmd-previous-window.c cmd-last-window.c cmd-list-keys.c \
@ -23,7 +23,8 @@ SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c status.c \
cmd-link-window.c cmd-unlink-window.c cmd-next-window.c \
cmd-swap-window.c cmd-rename-session.c cmd-kill-session.c \
cmd-switch-client.c cmd-has-session.c cmd-scroll-mode.c cmd-copy-mode.c \
cmd-paste-buffer.c window-scroll.c window-more.c window-copy.c
cmd-paste-buffer.c window-scroll.c window-more.c window-copy.c \
tty.c tty-keys.c tty-write.c screen-write.c screen-redraw.c
CC?= gcc
INCDIRS+= -I. -I-

1
TODO
View File

@ -63,6 +63,7 @@
or tailqs? what would be fastest per-char?
- multiple paste buffers
- window splitting?
- if only one arg to switch-window, assume source-index
-- For 0.2 --------------------------------------------------------------------
- anything which uses cmd_{send,recv}_string will break if the string is

View File

@ -1,5 +1,4 @@
/* $Id: server-msg.c,v 1.42 2007-12-12 19:44:59 nicm Exp $ */
/* $Id: server-msg.c,v 1.43 2007-12-13 18:59:42 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>