1
0
Fork 0
dosbox-staging/autogen.sh
ant-222 7ca80b1632 Provide aclocal with the path to additional .m4 files
It is required in MinGW for some reason.
2020-01-19 22:54:28 +01:00

14 lines
373 B
Bash
Executable file

#!/bin/sh
echo "Generating build information using aclocal, autoheader, automake and autoconf"
echo "This may take a while ..."
# Regenerate configuration files.
aclocal -I m4
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."