diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2011-09-15 12:58:39 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2011-09-15 12:58:39 +0000 |
commit | fb5b95883777c61cae129d4b01abc6776ba9005c (patch) | |
tree | 54884573cbf04e3f533e7a7cacf30cc87c5c93f1 | |
parent | 99f78340afaebc294e5c69e710ddf3ca00163987 (diff) | |
download | rtmux-fb5b95883777c61cae129d4b01abc6776ba9005c.tar.gz rtmux-fb5b95883777c61cae129d4b01abc6776ba9005c.tar.bz2 rtmux-fb5b95883777c61cae129d4b01abc6776ba9005c.zip |
Add build instructions based on diff from Frank Terbeck.
-rw-r--r-- | NOTES | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -13,6 +13,16 @@ Since the 1.2 release that tmux depends on libevent. Download it from: http://www.monkey.org/~provos/libevent/ +To build tmux from a release tarball, do: + + $ ./configure && make + $ sudo make install + +To build from a version control checkout, the configure script must be +generated by running: + + $ sh autogen.sh + tmux consists of a server part and multiple clients. The server is created when required and runs continuously unless killed by the user. Clients access the server through a socket in /tmp. Multiple sessions may be created on a single |