You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
422 B
24 lines
422 B
#!/bin/sh
|
|
|
|
# to use this please read http://www.libsdl.org/extras/win32/cross/README.txt
|
|
# from there i have got all this.
|
|
|
|
|
|
|
|
PREFIX=/usr/local/cross-tools
|
|
TARGET=i386-mingw32msvc
|
|
PATH="$PREFIX/bin:$PREFIX/$TARGET/bin:$PATH"
|
|
export PATH
|
|
|
|
cache=cross-config.cache
|
|
sh configure --cache-file="$cache" --disable-debug\
|
|
--target=$TARGET --host=$TARGET --build=i386-linux \
|
|
$*
|
|
|
|
make clean
|
|
|
|
|
|
make $*
|
|
|
|
strip src/bomberclone.exe
|