aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-06-27 08:30:22 +0000
committernyamatongwe <devnull@localhost>2000-06-27 08:30:22 +0000
commit09983a4ec6733a77ae2f9929e0271a85614a9d3c (patch)
tree69e72e39f57ba92eb966dbb626b7ba9062d8a616 /doc/ScintillaDoc.html
parent411b19b9ab393e4617b36f141b02c3c6c7f232f5 (diff)
downloadscintilla-mirror-09983a4ec6733a77ae2f9929e0271a85614a9d3c.tar.gz
Explanations of builing and installing.
Explanations of new properties files locations and names.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html28
1 files changed, 23 insertions, 5 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 3262ae660..8cb6774cb 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -1077,18 +1077,36 @@ EM_SETTARGETDEVICE
initialise Scintilla. The Sc1.exe target in the makefile demonstrates building a statically
linked version of SciTE.
</p>
+ <p>
+ To build everything, start in the directory that is above both scite and scintilla:<br />
+ <code>
+ cd scintilla\win32<br />
+ make<br />
+ cd ..\..<br />
+ cd scite\win32<br />
+ make<br />
+ </code>
+ </p>
<h3>
Building Scintilla with GTK+ on Linux
</h3>
<p>
On Linux, Scintilla and SciTE have been built with GCC and linked with GTK+ 1.2x. GTK+ 1.0x
will not work (and when it did it was very slow). The current make file only supports static
- linking between SciTE and Scintilla. The gtk/makefile file is used to build SciTE, it can be
- invoked as:<br />
+ linking between SciTE and Scintilla. The scintilla/gtk/makefile file is used to build Scintilla and
+ the scite/gtk/makefile file is used to build SciTE. To build and install everything, start in the
+ directory that is above both scite and scintilla:<br />
+ <code>
+ cd scintilla/gtk<br />
+ make<br />
+ cd ../..<br />
+ cd scite/gtk<br />
make<br />
- The SciTEGTK.properties file is better than the SciTEGlobal.properties for use on Linux/GTK+
- as it specifies fonts that are likely to be installed. Under Linux, SciTE reads its
- SciTEGlobal.properties file from the user's home directory.
+ make install<br />
+ </code><br />
+ The make install command searches for Gnome, and if found installs SciTE relative to Gnome
+ and places SciTE in the Gnome Applications menu. SciTE can be removed with make uninstall
+ command.
</p>
</body>
</html>