blob: 0d8f8b27c7a90b4b9841f57375e2275afa341b18 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
|