diff options
author | Kevin Day <blame582@gmail.com> | 2008-09-16 23:44:15 +0000 |
---|---|---|
committer | Kevin Day <blame582@gmail.com> | 2008-09-16 23:44:15 +0000 |
commit | 7d5d53e5f81eb0cc255edc188a955c9571cafb81 (patch) | |
tree | 9c796da02d2b27155369b4d0858d7cf8b6d51806 /autobuild.sh | |
parent | 176e885ef6c5ae34c8c31c693b65e5a246146f3a (diff) | |
download | mana-7d5d53e5f81eb0cc255edc188a955c9571cafb81.tar.gz mana-7d5d53e5f81eb0cc255edc188a955c9571cafb81.tar.bz2 mana-7d5d53e5f81eb0cc255edc188a955c9571cafb81.tar.xz mana-7d5d53e5f81eb0cc255edc188a955c9571cafb81.zip |
changed client gui and added autobuild.sh
Diffstat (limited to 'autobuild.sh')
-rwxr-xr-x | autobuild.sh | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/autobuild.sh b/autobuild.sh new file mode 100755 index 00000000..0d8f8b27 --- /dev/null +++ b/autobuild.sh @@ -0,0 +1,35 @@ +#!/bin/sh +# auto build script based on fedora but usable for other distros +#author=Blame <blame@aethyra.com> +#last modified date 2008-09-16 Blame + + +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" + +./configure + +echo +echo "now running make" + +make + +echo +echo "now running make install please input your root password" + +su -c "make install" +su -c "make clean" + +echo "done" + +aethyra & +exit 1; |