mirror of
https://github.com/joel16/SDL2.git
synced 2025-01-26 21:54:25 +00:00
b51a5b98fc
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401384
13 lines
270 B
Bash
Executable File
13 lines
270 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
echo "Generating build information using autoconf"
|
|
echo "This may take a while ..."
|
|
|
|
# Regenerate configuration files
|
|
cp acinclude.m4 aclocal.m4
|
|
autoconf
|
|
(cd test; sh autogen.sh)
|
|
|
|
# Run configure for this platform
|
|
echo "Now you are ready to run ./configure"
|