Moving these scripts out of my way... They need to get a bit more organized, taken into a subfolder, etc. Will do that later.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@2990 4a71c877-e1ca-e34f-864e-861f7616d084
master
Dennis Schridde 2007-12-07 19:15:30 +00:00
parent c7aca00f05
commit b2ebf09f4f
2 changed files with 0 additions and 29 deletions

View File

@ -1,10 +0,0 @@
PREFIX="${HOME}/Documents/Projects/Warzone/devpkg/devpkg"
PKG_CONFIG_PATH="${PREFIX}/lib/pkgconfig"
PATH="${PREFIX}/bin:${PATH}"
CFLAGS="-pipe -m32 -march=i686 -O2 -g"
CXXFLAGS="${CFLAGS}"
CPPFLAGS="-I${PREFIX}/include -I${PREFIX}/include/SDL"
LDFLAGS="-L${PREFIX}/lib"
INSTALLER_VERSION="2.0.8.0"

View File

@ -1,19 +0,0 @@
#!/bin/sh
source __BUILD_CONFIG
if [[ "x$1" = "xdebug" ]] ; then
CONF_EXTRA_FLAGS="--enable-debug"
elif [[ "x$1" = "xinstaller" ]] ; then
CONF_EXTRA_FLAGS="--enable-data --enable-installer
--with-installer-extdir=\"${PREFIX}/bin\" --with-installer-version=${INSTALLER_VERSION}"
fi
./autogen.sh
./configure --target=mingw32 --host=mingw32 --enable-static --disable-shared \
--prefix="${PREFIX}" \
${CONF_EXTRA_FLAGS} \
CFLAGS="${CFLAGS}" \
CPPFLAGS="${CPPFLAGS}" \
LDFLAGS="${LDFLAGS}"
make -j3