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

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2010-04-18 18:17:48 +0400
committerSebastien Pouliot <sebastien@ximian.com>2010-04-18 18:17:48 +0400
commit411ba253007b7c3bcd5a77b31ccf5ece6d685eb5 (patch)
tree2018348bd87440b2e2cd4134432dbb74d1d65a73 /README
parent040f4ae8a6e10f53c403e404c425db87dce9f73f (diff)
README: Add instructions for building from SVN
svn path=/trunk/mono-tools/; revision=155683
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 9 insertions, 1 deletions
diff --git a/README b/README
index fea791f9..6237c206 100644
--- a/README
+++ b/README
@@ -8,10 +8,18 @@ utilities for use with Mono.
Building:
--------
-Building should be as simple as:
+Building from a source tarball should be as simple as:
./configure [typical configure flags, such as --prefix=PREFIX]
make
make install
+Building from SVN is almost identical, except that you need to
+execute autogen.sh to create the configure script (which will be
+automatically executed):
+
+ svn co http://anonsvn.mono-project.com/source/trunk/mono-tools
+ ./autogen.sh [typical configure flags, such as --prefix=PREFIX]
+ make
+ make install