mirror of
https://github.com/retro100/dosbox-wii.git
synced 2024-11-05 09:55:10 +01:00
15 lines
381 B
Bash
15 lines
381 B
Bash
#!/bin/sh
|
|
|
|
echo "Generating build information using aclocal, autoheader, automake and autoconf"
|
|
echo "This may take a while ..."
|
|
|
|
# Regenerate configuration files.
|
|
|
|
aclocal
|
|
autoheader
|
|
automake --include-deps --add-missing --copy
|
|
autoconf
|
|
|
|
echo "Now you are ready to run ./configure."
|
|
echo "You can also run ./configure --help for extra features to enable/disable."
|