Mercurial > SDL_sound_CoreAudio
annotate bootstrap @ 311:d62c05322a3e
Logic fixes from Torbj�rn.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 24 Apr 2002 20:46:39 +0000 |
parents | 2b9131a7653c |
children | f0b8865577db |
rev | line source |
---|---|
235
2b9131a7653c
Took out some whitespace.
Ryan C. Gordon <icculus@icculus.org>
parents:
202
diff
changeset
|
1 #!/bin/sh |
68 | 2 |
202
ace10a8e632b
set -e and some more output.
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
3 set -e |
ace10a8e632b
set -e and some more output.
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
4 echo "Initial preparation...this can take awhile, so sit tight..." |
68 | 5 aclocal |
6 libtoolize --automake --copy --force | |
100
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
87
diff
changeset
|
7 autoheader |
75
a7f31634011a
Commented out --force option to automake.
Ryan C. Gordon <icculus@icculus.org>
parents:
68
diff
changeset
|
8 automake --foreign --add-missing --copy |
68 | 9 autoconf |
87
4d858e0f9213
Added a "you are now ready to run ./configure" message...
Ryan C. Gordon <icculus@icculus.org>
parents:
75
diff
changeset
|
10 |
4d858e0f9213
Added a "you are now ready to run ./configure" message...
Ryan C. Gordon <icculus@icculus.org>
parents:
75
diff
changeset
|
11 echo "You are now ready to run ./configure ..." |
4d858e0f9213
Added a "you are now ready to run ./configure" message...
Ryan C. Gordon <icculus@icculus.org>
parents:
75
diff
changeset
|
12 |