mirror of
https://github.com/yawut/SDL.git
synced 2026-04-08 18:15:18 -05:00
12 lines
229 B
Bash
Executable File
12 lines
229 B
Bash
Executable File
#! /bin/sh
|
|
|
|
echo "Generating build information using autoreconf"
|
|
echo "This may take a while..."
|
|
|
|
test -d acinclude || mkdir acinclude
|
|
|
|
autoreconf -i
|
|
|
|
# Run configure for this platform
|
|
echo "Now you are ready to run ./configure"
|