summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2015-12-08 01:10:32 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2015-12-08 01:10:32 +0000
commit4b154a643b4ef5a4448fd2e5b4d8e2e11d596eb5 (patch)
tree397291b7e8d108dc8fce3eb7cfe8ddf516b5f7d1 /usr.bin/tmux/Makefile
parent124e67113db228290a9a8ff903f6eb4ab3b34e60 (diff)
Add hooks infrastructure, basic commands (set-hook, show-hooks) and a
couple of not very useful client hooks. This will eventually let commands be run at various points and on notifications. Joint work with Thomas Adam.
Diffstat (limited to 'usr.bin/tmux/Makefile')
-rw-r--r--usr.bin/tmux/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/Makefile b/usr.bin/tmux/Makefile
index 8138a15842b..276440669b6 100644
--- a/usr.bin/tmux/Makefile
+++ b/usr.bin/tmux/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.82 2015/11/13 08:09:28 nicm Exp $
+# $OpenBSD: Makefile,v 1.83 2015/12/08 01:10:31 nicm Exp $
PROG= tmux
SRCS= alerts.c \
@@ -56,6 +56,7 @@ SRCS= alerts.c \
cmd-send-keys.c \
cmd-set-buffer.c \
cmd-set-environment.c \
+ cmd-set-hook.c \
cmd-set-option.c \
cmd-show-environment.c \
cmd-show-messages.c \
@@ -78,6 +79,7 @@ SRCS= alerts.c \
format.c \
grid-view.c \
grid.c \
+ hooks.c \
input-keys.c \
input.c \
job.c \