Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2002-02-10 04:18:22 +0300
committerMiguel de Icaza <miguel@gnome.org>2002-02-10 04:18:22 +0300
commit4c2ad5c231c8c698f6378722d320da14b4dde685 (patch)
tree09d87080197d4f8526a3cbd9908a504fbb6890af /doc/download
parent0d69e304e997f1db4d292baa349211f41d3d4807 (diff)
Add Getting Started section from Nick
svn path=/trunk/mono/; revision=2284
Diffstat (limited to 'doc/download')
-rw-r--r--doc/download22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/download b/doc/download
index 9192cfe9894..3a03594dcfe 100644
--- a/doc/download
+++ b/doc/download
@@ -119,12 +119,23 @@ tar xzvf mono-XXX.tar.gz
* Configure, compile and install:
+ For official releases, use:
+
<pre>
./configure --prefix=//c/mono
make
make install
</pre>
+ For Snapshots, or CVS trees, use:
+
+<pre>
+./autogen.sh --prefix=//c/mono
+make
+make install
+</pre>
+
+
* Some people observed problems with autoconf 2.52. Installing
autoconf 2.13 helped in those cases (don't forget to do a
`make maintainer-clean' after the update)
@@ -154,11 +165,22 @@ tar xzvf mono-XXX.tar.gz
</pre>
* Configure, compile and install:
+
+ For official releases:
<pre>
./configure
make
make install
</pre>
+
+ For snapshots and CVS trees:
+
+<pre>
+./autogen.sh
+make
+make install
+</pre>
+
</ul>