diff options
| author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-28 22:47:22 +0000 |
|---|---|---|
| committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-28 22:47:22 +0000 |
| commit | aafee17de62d21f5cd5ced9a798a89c39bb8a70a (patch) | |
| tree | 0f883f4683c033ae13e57ac8caf22d024b2d9c40 /Makefile | |
| parent | d2e035f892ac8b21889e0124157a9be4f94462d3 (diff) | |
| download | rtmux-aafee17de62d21f5cd5ced9a798a89c39bb8a70a.tar.gz rtmux-aafee17de62d21f5cd5ced9a798a89c39bb8a70a.tar.bz2 rtmux-aafee17de62d21f5cd5ced9a798a89c39bb8a70a.zip | |
New input parser via state machine.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 2007-09-26 18:32:16 nicm Exp $ +# $Id: Makefile,v 1.7 2007-09-28 22:47:21 nicm Exp $ .SUFFIXES: .c .o .y .h .PHONY: clean @@ -17,8 +17,8 @@ DEBUG= META?= \002 # C-b SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c \ - xmalloc.c xmalloc-debug.c input.c screen.c window.c session.c local.c \ - log.c client.c client-msg.c client-cmd.c op.c op-list.c + xmalloc.c xmalloc-debug.c input.c input-keys.c screen.c window.c \ + session.c local.c log.c client.c client-msg.c client-cmd.c op.c op-list.c YACC= yacc -d |