summaryrefslogtreecommitdiffstats
path: root/src/README.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-01-22 14:13:37 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-01-22 14:13:37 +0900
commitff248d566d424beb1eda8f7984f385658353b244 (patch)
treeb716bb62907ee70b143f315833f4ef78434d1d9f /src/README.md
parent6ccc12c332f97f6be9487d8289c46964e2d41bd3 (diff)
Drop ncurses dependency
Close #818
Diffstat (limited to 'src/README.md')
-rw-r--r--src/README.md17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/README.md b/src/README.md
index 2d065a92..ec88ca23 100644
--- a/src/README.md
+++ b/src/README.md
@@ -59,20 +59,31 @@ Unit tests can be run with `make test`. Integration tests are written in Ruby
script that should be run on tmux.
```sh
+cd src
+
# Unit tests
make test
+# Integration tests
+ruby ../test/test_go.rb
+
+# Build binary for the platform
+make
+
# Install the executable to ../bin directory
make install
-# Integration tests
-ruby ../test/test_go.rb
+# Make release archives
+make release
+
+# Make release archives for all supported platforms
+make release-all
```
Third-party libraries used
--------------------------
-- [ncurses][ncurses]
+- ~[ncurses][ncurses]~
- [mattn/go-runewidth](https://github.com/mattn/go-runewidth)
- Licensed under [MIT](http://mattn.mit-license.org)
- [mattn/go-shellwords](https://github.com/mattn/go-shellwords)