[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

File: [local] / src / usr.bin / tmux / Makefile (download)

Revision 1.14, Tue Aug 25 12:18:51 2009 UTC (14 years, 9 months ago) by nicm
Branch: MAIN
Changes since 1.13: +2 -2 lines

Add a choose-client command and extend choose-{session,window} to accept a
template. After a choice is made, %% (or %1) in the template is replaced by the
name of the session, window or client suitable for -t and the result executed
as a command. So, for example, "choose-window "killw -t '%%'"" will kill the
selected window.

The defaults if no template is given are (as now) select-window for
choose-window, switch-client for choose-session, and detach-client for
choose-client (now bound to D).

# $OpenBSD: Makefile,v 1.14 2009/08/25 12:18:51 nicm Exp $

PROG=	tmux
SRCS=	attributes.c buffer-poll.c buffer.c cfg.c client-fn.c \
	client.c clock.c cmd-attach-session.c cmd-bind-key.c \
	cmd-break-pane.c cmd-choose-session.c cmd-choose-window.c \
	cmd-clear-history.c cmd-clock-mode.c cmd-command-prompt.c \
	cmd-confirm-before.c cmd-copy-buffer.c cmd-copy-mode.c \
	cmd-delete-buffer.c cmd-detach-client.c cmd-down-pane.c \
	cmd-find-window.c cmd-generic.c cmd-has-session.c cmd-kill-pane.c \
	cmd-kill-server.c cmd-kill-session.c cmd-kill-window.c \
	cmd-last-window.c cmd-link-window.c cmd-list-buffers.c \
	cmd-list-clients.c cmd-list-commands.c cmd-list-keys.c \
	cmd-list-sessions.c cmd-list-windows.c cmd-list.c cmd-load-buffer.c \
	cmd-lock-server.c cmd-move-window.c cmd-new-session.c cmd-new-window.c \
	cmd-next-layout.c cmd-next-window.c cmd-paste-buffer.c \
	cmd-previous-layout.c cmd-previous-window.c cmd-refresh-client.c \
	cmd-rename-session.c cmd-rename-window.c cmd-resize-pane.c \
	cmd-respawn-window.c cmd-rotate-window.c cmd-save-buffer.c \
	cmd-scroll-mode.c cmd-select-layout.c cmd-select-pane.c \
	cmd-select-prompt.c cmd-select-window.c cmd-send-keys.c \
	cmd-send-prefix.c cmd-server-info.c cmd-set-buffer.c cmd-set-option.c \
	cmd-set-password.c cmd-set-window-option.c cmd-show-buffer.c \
	cmd-show-options.c cmd-show-window-options.c cmd-source-file.c \
	cmd-split-window.c cmd-start-server.c cmd-string.c cmd-if-shell.c \
	cmd-suspend-client.c cmd-swap-pane.c cmd-swap-window.c \
	cmd-switch-client.c cmd-unbind-key.c cmd-unlink-window.c \
	cmd-set-environment.c cmd-show-environment.c cmd-choose-client.c \
	cmd-up-pane.c cmd-display-message.c cmd.c \
	colour.c environ.c grid-view.c grid.c input-keys.c \
	imsg.c imsg-buffer.c input.c key-bindings.c key-string.c \
	layout-set.c layout.c log.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-scroll.c window.c xmalloc.c

CDIAGFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
CDIAGFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
CDIAGFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare
CDIAGFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align

LDADD=  -lutil -lcurses
DPADD=  ${LIBUTIL}

.include <bsd.prog.mk>