mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-27 10:33:09 +01:00
To 0.4. Some other Makefile tweaks.
This commit is contained in:
parent
ee32d19432
commit
61a41dc80e
12
CHANGES
12
CHANGES
@ -1,3 +1,13 @@
|
|||||||
|
18 June 2008
|
||||||
|
|
||||||
|
* Scroll the status line to show the current window if necessary. Also handle
|
||||||
|
windows smaller than needed better (show a blank status line instead of
|
||||||
|
hanging or crashing).
|
||||||
|
|
||||||
|
17 June 2008
|
||||||
|
|
||||||
|
* tmux 0.3 released.
|
||||||
|
|
||||||
16 June 2008
|
16 June 2008
|
||||||
|
|
||||||
* Add some information messages when window options are changed, suggested by
|
* Add some information messages when window options are changed, suggested by
|
||||||
@ -482,4 +492,4 @@
|
|||||||
(including mutt, emacs). No status bar yet and no key remapping or other
|
(including mutt, emacs). No status bar yet and no key remapping or other
|
||||||
customisation.
|
customisation.
|
||||||
|
|
||||||
$Id: CHANGES,v 1.122 2008-06-16 17:35:40 nicm Exp $
|
$Id: CHANGES,v 1.123 2008-06-18 16:34:48 nicm Exp $
|
||||||
|
9
Makefile
9
Makefile
@ -1,10 +1,10 @@
|
|||||||
# $Id: Makefile,v 1.61 2008-06-16 06:10:02 nicm Exp $
|
# $Id: Makefile,v 1.62 2008-06-18 16:34:48 nicm Exp $
|
||||||
|
|
||||||
.SUFFIXES: .c .o .y .h
|
.SUFFIXES: .c .o .y .h
|
||||||
.PHONY: clean update-index.html upload-index.html
|
.PHONY: clean update-index.html upload-index.html
|
||||||
|
|
||||||
PROG= tmux
|
PROG= tmux
|
||||||
VERSION= 0.2
|
VERSION= 0.4
|
||||||
|
|
||||||
OS!= uname
|
OS!= uname
|
||||||
REL!= uname -r
|
REL!= uname -r
|
||||||
@ -35,7 +35,7 @@ SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c status.c \
|
|||||||
|
|
||||||
CC?= cc
|
CC?= cc
|
||||||
INCDIRS+= -I. -I- -I/usr/local/include
|
INCDIRS+= -I. -I- -I/usr/local/include
|
||||||
CFLAGS+= -DBUILD="\"$(VERSION) ($(DATE))\"" -DMETA="'${META}'"
|
CFLAGS+= -DMETA="'${META}'"
|
||||||
.ifdef PROFILE
|
.ifdef PROFILE
|
||||||
# Don't use ccache
|
# Don't use ccache
|
||||||
CC= /usr/bin/gcc
|
CC= /usr/bin/gcc
|
||||||
@ -44,6 +44,9 @@ CFLAGS+= -pg -DPROFILE -O0
|
|||||||
.ifdef DEBUG
|
.ifdef DEBUG
|
||||||
CFLAGS+= -g -ggdb -DDEBUG
|
CFLAGS+= -g -ggdb -DDEBUG
|
||||||
LDFLAGS+= -Wl,-E
|
LDFLAGS+= -Wl,-E
|
||||||
|
CFLAGS+= -DBUILD="\"$(VERSION) ($(DATE))\""
|
||||||
|
.else
|
||||||
|
CFLAGS+= -DBUILD="\"$(VERSION)\""
|
||||||
.endif
|
.endif
|
||||||
#CFLAGS+= -pedantic -std=c99
|
#CFLAGS+= -pedantic -std=c99
|
||||||
CFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
|
CFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
|
||||||
|
Loading…
Reference in New Issue
Block a user