2016-02-17 04:34:05 +00:00
|
|
|
|
2016-02-18 02:55:55 +00:00
|
|
|
# Value passed to ./configure for the --host argument. If empty, then
|
|
|
|
# --host will not be passed. Set this if you want to cross-compile.
|
|
|
|
BUILD_HOST=
|
|
|
|
|
|
|
|
# An example of how to cross-compile to mingw32 for Windows builds:
|
2016-02-18 05:03:40 +00:00
|
|
|
#BUILD_HOST=i686-w64-mingw32
|
2016-02-18 02:55:55 +00:00
|
|
|
|
|
|
|
# If we're cross-compiling to a different platform, this should be set
|
|
|
|
# to true. We initialize this based on whether BUILD_HOST has been set.
|
|
|
|
if [ "$BUILD_HOST" != "" ]; then
|
|
|
|
IS_CROSS_COMPILE=true
|
|
|
|
else
|
|
|
|
IS_CROSS_COMPILE=false
|
|
|
|
fi
|
2016-02-17 04:34:05 +00:00
|
|
|
|
2016-02-18 05:37:46 +00:00
|
|
|
# Extra arguments we pass to make when building.
|
|
|
|
MAKE_OPTS=
|
|
|
|
|
|
|
|
# Uncomment to use more threads for faster builds.
|
|
|
|
#MAKE_OPTS=-j4
|
|
|
|
|
2016-06-15 23:26:20 +00:00
|
|
|
# By default the stable variant of packages is built unless otherwise
|
|
|
|
# requested. If a package name appears inside this array, the "latest"
|
|
|
|
# variant of that package (ie. source control HEAD) is built instead.
|
|
|
|
LATEST_PACKAGES=(chocolate-doom)
|
|
|
|
#LATEST_PACKAGES+=(SDL2 SDL2_image SDL2_mixer SDL2_net)
|
|
|
|
|
2016-02-17 04:34:05 +00:00
|
|
|
if [ $(uname) = "Darwin" ]; then
|
|
|
|
LDFLAGS="-lobjc ${LDFLAGS:-}"
|
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.7
|
2017-01-07 20:13:50 +00:00
|
|
|
export LDFLAGS MACOSX_DEPLOYMENT_TARGET
|
2016-02-17 04:34:05 +00:00
|
|
|
else
|
2017-01-07 20:17:18 +00:00
|
|
|
# Include $INSTALL_DIR/lib in the list of paths that is searched
|
|
|
|
# when looking for DLLs. This allows built binaries to be run
|
|
|
|
# without needing to set LD_LIBRARY_PATH every time.
|
2016-02-17 04:34:05 +00:00
|
|
|
LDFLAGS="-Wl,-rpath -Wl,$INSTALL_DIR/lib ${LDFLAGS:-}"
|
2016-02-18 02:55:55 +00:00
|
|
|
export LDFLAGS
|
2016-02-17 04:34:05 +00:00
|
|
|
fi
|
|
|
|
|