Simplified the initial-build procedure...

by adding a configure invocation to autogen.sh.  Fixed a bug in make
clean.  Updated the intallation instructions.
This commit is contained in:
Eric S. Raymond 2007-05-11 13:20:30 +00:00
parent c50ede3a33
commit 414114f6f1
3 changed files with 15 additions and 6 deletions

18
INSTALL
View File

@ -39,14 +39,22 @@ then
$ cd wesnoth-x.y.z
The usual
Do this
$ ./configure
$ autogen.sh
$ make
$ make install
$ sudo make install
only compiles the wesnoth binary and installs it along with the game
data to the default prefix which is probably /usr/local.
to compile the wesnoth binary and install it along with the game
data to the default prefix, which is probably /usr/local. You
can pass configure options to the autogen.sh call
After your first build, it should not be necessary to call autogen.sh
again. You can do
$ configure
$ make
$ sudo make install
If you see lots of messages like "Type 'svnversion --help' for usage.",
you have a Subversion client installed but it is not implementing the

View File

@ -120,7 +120,7 @@ uninstall-hook:
if test -d $(prefix) ; then echo `rmdir $(prefix)` ; fi
clean-local:
rm -rf translations
rm -rf translations po/stamp* po/*/stamp*
BINARY_STAGING=/tmp/$(PACKAGE)-$(VERSION)-staging
BINARY_DIST=/tmp/$(PACKAGE)-binary-$(VERSION).tar.gz

View File

@ -5,3 +5,4 @@ aclocal -I m4
autoheader
automake --add-missing --copy
autoconf
configure $*