diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-11-22 20:07:56 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-11-22 20:07:56 +0100 |
commit | 31f40703d569478619952343bde3f73c3a576847 (patch) | |
tree | cedc3b2515ed05f57875d51776f9feb11f0ac709 | |
parent | e97d5a38f868202b409b36acccd92676dbac86df (diff) | |
download | mana-31f40703d569478619952343bde3f73c3a576847.tar.gz mana-31f40703d569478619952343bde3f73c3a576847.tar.bz2 mana-31f40703d569478619952343bde3f73c3a576847.tar.xz mana-31f40703d569478619952343bde3f73c3a576847.zip |
Updated INSTALL file to mention git
Also got rid of autogen.sh and instructed to use 'autoreconf -i'
instead.
-rw-r--r-- | INSTALL | 8 | ||||
-rwxr-xr-x | autogen.sh | 13 |
2 files changed, 4 insertions, 17 deletions
@@ -5,7 +5,7 @@ Homepage: http://themanaworld.org/ IRC: irc.freenode.net / #themanaworld 1) Requirements -2) Compiling The Mana World +2) Compiling And Installing The Mana World 3) Notes @@ -26,8 +26,7 @@ and some libraries. The required libraries are: * zlib 1.2.x http://www.gzip.org/zlib/ * libcurl http://curl.haxx.se/libcurl/ -If you checked TMW out from Subversion you will also need these tools to -compile: +If you've cloned the Git repository, you will also need these tools to compile: * GNU automake 1.9 http://www.gnu.org/software/automake/ * GNU autoconf http://www.gnu.org/software/autoconf/ @@ -40,7 +39,8 @@ you to figure this out. ========================================== 1) Go to the directory you have extracted the source to. -2) If you checked out from SVN, run "./autogen.sh" to generate configure. +2) If you've cloned the Git repository, run "autoreconf -i" to generate + configure and install any missing auxiliary files. 3) Run "./configure" 4) Run "make" 5) Run "make install" as root diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 8f047c99..00000000 --- a/autogen.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -echo "Generating build information using aclocal, autoheader, automake and autoconf." -echo - -# Regerate configuration files -aclocal -autoheader -automake --gnu --add-missing --copy -autoconf - -echo -echo "Now you are ready to run ./configure" |