mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-25 16:49:50 +00:00
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:
parent
c50ede3a33
commit
414114f6f1
18
INSTALL
18
INSTALL
@ -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
|
||||
|
@ -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
|
||||
|
@ -5,3 +5,4 @@ aclocal -I m4
|
||||
autoheader
|
||||
automake --add-missing --copy
|
||||
autoconf
|
||||
configure $*
|
||||
|
Loading…
x
Reference in New Issue
Block a user