Updated Makefile.in so "make dist" includes everything necessary for release. --HG-- rename : BUGS => BUGS.txt rename : COPYING => COPYING.txt rename : CREDITS => CREDITS.txt rename : INSTALL => INSTALL.txt rename : README.android => README-android.txt rename : README.cmake => README-cmake.txt rename : README.DirectFB => README-directfb.txt rename : README.gesture => README-gesture.txt rename : README.HG => README-hg.txt rename : README.iOS => README-ios.txt rename : README.MacOSX => README-macosx.txt rename : README.pandora => README-pandora.txt rename : README.Platforms => README-platforms.txt rename : README.Porting => README-porting.txt rename : README.psp => README-psp.txt rename : README.touch => README-touch.txt rename : README.WinCE => README-wince.txt rename : README => README.txt rename : TODO => TODO.txt
18 lines
470 B
Bash
Executable file
18 lines
470 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
echo "Generating build information using autoconf"
|
|
echo "This may take a while ..."
|
|
|
|
# Regenerate configuration files
|
|
found=false
|
|
for autoconf in autoconf autoconf259 autoconf-2.59
|
|
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
|
|
done
|
|
if test x$found = xfalse; then
|
|
echo "Couldn't find autoconf, aborting"
|
|
exit 1
|
|
fi
|
|
(cd test; sh autogen.sh)
|
|
|
|
# Run configure for this platform
|
|
echo "Now you are ready to run ./configure"
|