diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-12-04 22:17:14 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-12-04 22:17:14 +0100 |
commit | bbfdcc13410332fa33b9c9a5492550560f770024 (patch) | |
tree | 8bb7316369ace665ba1891fc1ee0a2a78b3a33b9 /README | |
parent | df108ef727f52b04528d54a3137915b927049f19 (diff) | |
download | sciteco-bbfdcc13410332fa33b9c9a5492550560f770024.tar.gz |
updated README (autoconf-based build system)
Diffstat (limited to 'README')
-rw-r--r-- | README | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -44,7 +44,7 @@ Installation ============ SciTECO has the following build and runtime dependencies: -* GNU C, C++ and [Gob2](http://www.jirka.org/gob.html) +* Autotools, GNU C, C++ and [Gob2](http://www.jirka.org/gob.html) * [Glib](http://developer.gnome.org/glib/), as a cross-platform runtime library * [Scintilla](http://www.scintilla.org/), and possibly [Scinterm](http://foicica.com/scinterm/) * [GTK+ 2](http://www.gtk.org/), [NCurses](http://www.gnu.org/software/ncurses/), @@ -55,10 +55,13 @@ SciTECO has the following build and runtime dependencies: 1. Build Scintilla as described in its README. If you want to build the ncurses version, install Scinterm from a subdirectory of Scintilla called "scinterm". 2. Untar/unzip/check-out SciTECO into a subdirectory of Scintilla. -3. Build with `make INTERFACE=GTK` or `make INTERFACE=NCURSES` respectively. + Alternatively, have a look at `--with-scintilla`. +3. Build like any other Autoconf-based project. `autoreconf` (only necessary if building from + a working copy), followed by `./configure`, followed by `make`. + The interface may be chosen with `--with-interface` (ncurses is the default). 3. Install with `make install`. -4. You are recommended to use the included "teco.ini" as a starting point for your profile, - so copy it to "~/.teco_ini". The default "teco.ini" opens files specified on the +4. You are recommended to use the included `teco.ini` as a starting point for your profile, + so copy it to `~/.teco_ini`. The default `teco.ini` opens files specified on the commandline for you, uses a file open hook to configure syntax highlighting (only C/C++ and Makefiles for now) and enables line numbers. |