mirror of
https://github.com/yawut/SDL.git
synced 2026-04-09 02:25:13 -05:00
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"
|