# $Header: /cvsroot/uhexen2/scripts/cross_defs,v 1.5 2008/04/02 18:03:06 sezero Exp $

# This file contains all common Win32 cross compilation definitions for
# use with all other build_cross_win32.sh scripts for the uhexen2 tree.

# This script is written with the cross-tools and instructions found at
# http://www.libsdl.org/extras/win32/cross/ in mind.  Change it to meet
# your needs and environment.

PREFIX=/usr/local/cross-tools
TARGET=i386-mingw32msvc

PATH="$PREFIX/bin:$PREFIX/$TARGET/bin:$PATH"
export PATH

WINBUILD=1

CC="$TARGET-gcc"
AS="$TARGET-as"
AR="$TARGET-ar"
WINDRES="$TARGET-windres"
export CC WINDRES AS AR WINBUILD

STRIPPER="$TARGET-strip"

