author | Ryan C. Gordon <icculus@icculus.org> |
Mon, 29 Jul 2002 06:18:25 +0000 | |
changeset 428 | b8349f8c6bac |
parent 357 | 9c0dd45cb7eb |
child 625 | 60b5f566a258 |
permissions | -rwxr-xr-x |
213 | 1 |
#!/bin/sh |
2 |
||
3 |
set -e |
|
4 |
echo "Initial preparation...this can take awhile, so sit tight..." |
|
357
9c0dd45cb7eb
Now copies the Makefile.am template instead of rename()ing it.
Ryan C. Gordon <icculus@icculus.org>
parents:
299
diff
changeset
|
5 |
perl -w -e 'use File::Copy; 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) { copy("./Makefile.am.oldautomake", "./Makefile.am"); } else { copy("./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 |