diff options
| author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-12-08 16:19:51 +0000 |
|---|---|---|
| committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-12-08 16:19:51 +0000 |
| commit | 7a82e86827e3d863a6dc4f1d50985f287d1ff86b (patch) | |
| tree | 34bcc703d5d79065c5ef364be2a6ebfbc13cf6d0 /GNUmakefile | |
| parent | f008d303e75c185eebcbb493b4e6d49bb400f694 (diff) | |
| download | rtmux-7a82e86827e3d863a6dc4f1d50985f287d1ff86b.tar.gz rtmux-7a82e86827e3d863a6dc4f1d50985f287d1ff86b.tar.bz2 rtmux-7a82e86827e3d863a6dc4f1d50985f287d1ff86b.zip | |
Make window options work the same was as session options, add mode-fg/mode-bg options, force -g for global on set/show/setw/showw/
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index ee69a306..eaf27ff8 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,13 +1,13 @@ -# $Id: GNUmakefile,v 1.42 2008-09-26 06:45:25 nicm Exp $ +# $Id: GNUmakefile,v 1.43 2008-12-08 16:19:51 nicm Exp $ .PHONY: clean PROG= tmux -VERSION= 0.5 +VERSION= 0.6 DATE= $(shell date +%Y%m%d-%H%M) -#DEBUG= 1 +DEBUG= 1 META?= \002 @@ -33,7 +33,7 @@ SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c status.c \ cmd-list-commands.c cmd-move-window.c cmd-select-prompt.c \ cmd-respawn-window.c \ window-scroll.c window-more.c window-copy.c options.c paste.c \ - tty.c tty-keys.c tty-write.c colour.c utf8.c + tty.c tty-keys.c tty-write.c colour.c utf8.c options-cmd.c CC?= gcc INCDIRS+= -I. -I- |