mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 20:15:17 +00:00
6cb1b2faec
* patch for beta 32 * require the development flag for Lua profiler * autogen
16 lines
276 B
Bash
Executable file
16 lines
276 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
if [ $# -eq 0 ]; then
|
|
make DEBUG=1 DEVELOPMENT=1 STRICT=1 PROFILE=1 -j
|
|
else
|
|
make DEBUG=1 DEVELOPMENT=1 PROFILE=1 -j
|
|
fi
|
|
|
|
# find file
|
|
FILE=./build/us_pc/sm64.us.f3dex2e.exe
|
|
if [ ! -f "$FILE" ]; then
|
|
FILE=./build/us_pc/sm64.us.f3dex2e
|
|
fi
|
|
|
|
$FILE &
|