mirror of
https://github.com/retro100/dosbox-wii.git
synced 2024-11-16 15:19:15 +01:00
18 lines
464 B
Bash
18 lines
464 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 --gnits --include-deps --add-missing --copy
|
|
autoconf
|
|
|
|
#Copy settings.h.cvs to settings.h and that's it,
|
|
|
|
directory=`dirname $0`
|
|
cp $directory/settings.h.cvs $directory/settings.h
|
|
echo "Now you are ready to run ./configure also check settings.h for extra build settings"
|