mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
8 lines
159 B
Bash
Executable file
8 lines
159 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PREFIX=/usr/local/cross-tools
|
|
TARGET=i386-mingw32msvc
|
|
PATH="$PREFIX/bin:$PREFIX/$TARGET/bin:$PATH"
|
|
export PATH
|
|
export PLATFORM=mingw32
|
|
exec make $*
|