lilium-voyager/cross-make-mingw.sh

17 lines
187 B
Bash
Raw Normal View History

2005-12-29 00:04:41 +00:00
#!/bin/sh
if [ !$CC ]
then
export CC=i586-mingw32msvc-gcc
fi
if [ !$WINDRES ]
then
export WINDRES=i586-mingw32msvc-windres
fi
export PLATFORM=mingw32
export ARCH=x86
2005-12-29 00:04:41 +00:00
exec make $*