author | Ryan C. Gordon <icculus@icculus.org> |
Wed, 10 Jul 2002 02:57:23 +0000 | |
changeset 319 | 3b555459053e |
parent 299 | a4a50c609021 |
child 357 | 9c0dd45cb7eb |
permissions | -rwxr-xr-x |
213 | 1 |
#!/bin/sh |
2 |
||
3 |
set -e |
|
4 |
echo "Initial preparation...this can take awhile, so sit tight..." |
|
299
a4a50c609021
More build system dancing.
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
5 |
perl -w -e 'exit 0 if (-f "Makefile.am"); my $x = `automake --version |head -n 1`; chomp($x); $x = 0.0 if ($x !~ s/\A.*?(\d+\.\d+).*\Z/$1/); if ($x < 1.5) { rename ("./Makefile.am.oldautomake", "./Makefile.am"); } else { rename ("./Makefile.am.newautomake", "./Makefile.am"); }' |
213 | 6 |
aclocal |
7 |
libtoolize --automake --copy --force |
|
8 |
autoheader |
|
9 |
automake --foreign --add-missing --copy |
|
10 |
autoconf |
|
11 |
||
12 |
echo "You are now ready to run ./configure ..." |
|
13 |