16da45eea5
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@100 7f0cb862-5218-0410-a997-914c9d46530a
13 lines
244 B
Bash
Executable File
13 lines
244 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
echo "Generating build information using aclocal, automake and autoconf"
|
|
echo "This may take a while ..."
|
|
|
|
aclocal
|
|
autoheader
|
|
libtoolize --copy --force
|
|
automake --add-missing
|
|
autoconf
|
|
|
|
echo "Now you are ready to run ./configure"
|