diff options
author | 2014-08-15 14:58:42 -0400 | |
---|---|---|
committer | 2014-08-15 14:58:42 -0400 | |
commit | be822b8a875b97d0cac63a1d06bd123b00ba1c13 (patch) | |
tree | 8691d88dd075ddc2dd2020be5d511c2ef8f2b581 /doc/manual.md | |
parent | 8490f78a1e06ec9dd2c7c75da96af02f58aaf5cb (diff) | |
download | textadept-be822b8a875b97d0cac63a1d06bd123b00ba1c13.tar.gz textadept-be822b8a875b97d0cac63a1d06bd123b00ba1c13.zip |
Added note about `make deps` when compiling from source; doc/manual.md
Diffstat (limited to 'doc/manual.md')
-rw-r--r-- | doc/manual.md | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/doc/manual.md b/doc/manual.md index 18862919..5aee1b2d 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -1520,10 +1520,11 @@ binaries. ### Compiling on Linux and BSD -For Linux and BSD systems, simply run `make deps` in the *src/* directory to -prepare the build environment followed by `make` to build the *textadept* and -*textadeptjit* executables in the root directory. Make a symlink from them to -*/usr/bin/* or elsewhere in your `PATH`. +For Linux and BSD systems, simply run `make deps` (or `make deps NIGHTLY=1` when +compiling Textadept from the latest source rather than from a tagged release) in +the *src/* directory to prepare the build environment, followed by `make` to +build the *textadept* and *textadeptjit* executables in the root directory. Make +a symlink from them to */usr/bin/* or elsewhere in your `PATH`. Similarly, `make curses` builds *textadept-curses* and *textadeptjit-curses*. @@ -1539,9 +1540,10 @@ compiler flags do not include them by default. Textadept is self-contained, meaning you do not have to install it, and runs from its current location. Should you choose to install Textadept like a normal -Linux application, run `make deps` and then the usual `make` and `make install` -or `sudo make install` commands depending on your privileges. The default prefix -is */usr/local* but setting `DESTDIR` (e.g. +Linux application, run `make deps` (or `make deps NIGHTLY=1` as noted in the +previous section) and then the usual `make` and `make install` or +`sudo make install` commands depending on your privileges. The default prefix is +*/usr/local* but setting `DESTDIR` (e.g. `make install DESTDIR=/prefix/to/install/to`) changes it. Similarly, `make curses` and `make curses install` installs the curses version. |