mirror of
https://github.com/yawut/SDL.git
synced 2026-04-25 15:58:04 -05:00
12 lines
283 B
Bash
Executable File
12 lines
283 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
echo "Generating build information using aclocal and autoconf"
|
|
echo "This may take a while ..."
|
|
|
|
# Regenerate configuration files
|
|
(aclocal && autoconf) || exit $?
|
|
(cd test; aclocal; autoconf)
|
|
|
|
# Run configure for this platform
|
|
echo "Now you are ready to run ./configure"
|