mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
6d5ffa9f8e
There's still some cleanup to do, but everything seems to be working nicely: `make -j` works, `make distcheck` passes. There is probably plenty of bitrot in the package directories (RPM, debian), though. The vc project files have been removed since those versions are way out of date and quakeforge is pretty much dependent on gcc now anyway. Most of the old Makefile.am files are now Makemodule.am. This should allow for new Makefile.am files that allow local building (to be added on an as-needed bases). The current remaining Makefile.am files are for standalone sub-projects.a The installable bins are currently built in the top-level build directory. This may change if the clutter gets to be too much. While this does make a noticeable difference in build times, the main reason for the switch was to take care of the growing dependency issues: now it's possible to build tools for code generation (eg, using qfcc and ruamoko programs for code-gen).
107 lines
3.9 KiB
Bash
Executable file
107 lines
3.9 KiB
Bash
Executable file
#! /bin/sh
|
|
cd `dirname $0`
|
|
|
|
if test "$1" = "clean"; then
|
|
UNAME=`uname`
|
|
if test $UNAME = OpenBSD || test $UNAME = Darwin ; then
|
|
ARGS="-0"
|
|
else
|
|
ARGS="-r0"
|
|
fi
|
|
|
|
find . -name Makefile.in -print0 | xargs $ARGS rm -f
|
|
find . -path ./tools/texpaint -prune -o -name config.h.in -print0 | xargs $ARGS rm -f
|
|
find . \( -path ./vc2005 -o -path ./vc2008 \) -prune -o -name config.h -print0 | xargs $ARGS rm -f
|
|
find . -name stamp-h1 -print0 | xargs $ARGS rm -f
|
|
find . -name '*~' -type f -print0 | xargs $ARGS rm -f
|
|
find . -name '*.rej' -type f -print0 | xargs $ARGS rm -f
|
|
find . -name '*.orig' -type f -print0 | xargs $ARGS rm -f
|
|
rm -f aclocal.m4 build-stamp changelog-stamp config.cache config.log \
|
|
config.status configure configure-stamp install-sh libtool missing \
|
|
mkinstalldirs quakeforge-config quakeforge.lsm test-driver
|
|
rm -f compile config.guess config.sub depcomp ltmain.sh ylwrap
|
|
rm -rf autom4te.cache
|
|
rm -f m4/libtool.m4 m4/ltoptions.m4 m4/ltsugar.m4 m4/ltversion.m4 \
|
|
m4/lt~obsolete.m4
|
|
|
|
cd -
|
|
find . \( -path ./tools/gas2masm -o -path ./tools/quaketoascii \) -prune -o -name Makefile -print0 | xargs $ARGS rm -f
|
|
find . -name core -print0 | xargs $ARGS rm -f
|
|
rm -f RPM/build_rpm RPM/quakeforge.conf RPM/quakeforge.spec RPM/rpmmacros
|
|
find . -name '*.o' -type f -print0 | xargs $ARGS rm -f
|
|
find . -name '*.lo' -type f -print0 | xargs $ARGS rm -f
|
|
find . -name '*.qfo' -type f -print0 | xargs $ARGS rm -f
|
|
find . -name '.libs' -type d -print0 | xargs $ARGS rm -rf
|
|
find . -name '.deps' -type d -print0 | xargs $ARGS rm -rf
|
|
find . -name '*.a' -type f -print0 | xargs $ARGS rm -f
|
|
find . -name '*.dat*' -type f -print0 | xargs $ARGS rm -f
|
|
find . -name '*.sym*' -type f -print0 | xargs $ARGS rm -f
|
|
exit 0
|
|
fi
|
|
# Check libtoolize version, fix for Debian/Woody
|
|
if test x`uname` = xDarwin ; then
|
|
libtoolize=glibtoolize
|
|
else
|
|
libtoolize=libtoolize
|
|
fi
|
|
lt=`which $libtoolize`
|
|
if test -n "$lt" ; then
|
|
if test -x "$lt" ; then
|
|
LTIZE_VER=`$libtoolize --version | head -1 | sed 's/.* \([1-9][0-9]*\(\.[1-9][0-9]*\)\(\.[1-9][0-9]*\)*\).*/\1/'`
|
|
LTIZE_VER_MAJOR=`echo $LTIZE_VER | cut -f1 -d'.'`
|
|
LTIZE_VER_MINOR=`echo $LTIZE_VER | cut -f2 -d'.' | sed -e 's/[^0-9]//g'`
|
|
|
|
if test "$LTIZE_VER_MAJOR" -lt "1"; then
|
|
errors="Libtool 1.5 or greater needed to build configure.\n$errors"
|
|
fi
|
|
if test "$LTIZE_VER_MAJOR" -eq "1" -a "$LTIZE_VER_MINOR" -lt "5" ; then
|
|
errors="Libtool 1.5 or greater needed to build configure.\n$errors"
|
|
fi
|
|
fi
|
|
else
|
|
errors="Libtool not found. QuakeForge git requires libtool to bootstrap itself.\n$errors"
|
|
fi
|
|
|
|
# Check Autoconf version
|
|
ac=`which autoconf`
|
|
if test -n "$ac" ; then
|
|
if test -x "$ac" ; then
|
|
AC_VER=`autoconf --version | head -1 | sed 's/^[^0-9]*//'`
|
|
AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
|
|
AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//'`
|
|
|
|
if test "$AC_VER_MAJOR" -lt "2" ; then
|
|
errors="Autoconf 2.61 or greater needed to build configure.\n$errors"
|
|
fi
|
|
|
|
if test "$AC_VER_MAJOR" -eq "2" -a "$AC_VER_MINOR" -lt "61" ; then
|
|
errors="Autoconf 2.61 or greater needed to build configure.\n$errors"
|
|
fi
|
|
fi
|
|
else
|
|
errors="Autoconf not found. QuakeForge git requires autoconf to bootstrap itself.\n$errors"
|
|
fi
|
|
|
|
am=`which automake`
|
|
if test -n "$am" ; then
|
|
if test -x "$am" ; then
|
|
AM_VER=`automake --version | head -1 | sed -e 's/automake (GNU automake) //' -e 's/\-p.*$//'`
|
|
AM_VER_MAJOR=`echo $AM_VER | cut -f1 -d.`
|
|
AM_VER_MINOR=`echo $AM_VER | cut -f2 -d.`
|
|
if test "$AM_VER_MAJOR" -lt "1"; then
|
|
errors="Automake 1.10 or greater needed to build makefiles.\n$errors"
|
|
fi
|
|
if test "$AM_VER_MAJOR" -eq "1" -a "$AM_VER_MINOR" -lt "10"; then
|
|
errors="Automake 1.10 or greater needed to build makefiles.\n$errors"
|
|
fi
|
|
fi
|
|
else
|
|
errors="Automake not found. QuakeForge git requires automake to bootstrap itself.\n$errors"
|
|
fi
|
|
|
|
if test -n "$errors" ; then
|
|
echo "$errors"
|
|
exit 1
|
|
fi
|
|
|
|
aclocal -I m4 && autoheader && $libtoolize --automake && automake --add-missing && autoconf
|