#!/bin/sh
# This file was originally introduced by Allin Cottrell.
# http://ricardo.ecn.wfu.edu/~cottrell/cross-gtk/
TARGET=${TARGET}
PREFIX="`pwd`/virtual_root"
cache=win32.cache
sh configure --cache-file="$cache" \
        --target=$TARGET --host=$TARGET \
        --prefix=$PREFIX \
        --without-gtk2 $*
status=$?
rm -f "$cache"
exit $status

