mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 03:55:11 +00:00
12 lines
243 B
Bash
Executable file
12 lines
243 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
make RENDER_API=DUMMY AUDIO_API=DUMMY CONTOLLER_API= -j
|
|
|
|
# find file
|
|
FILE=./build/us_pc/sm64.us.f3dex2e.exe
|
|
if [ ! -f "$FILE" ]; then
|
|
FILE=./build/us_pc/sm64.us.f3dex2e
|
|
fi
|
|
|
|
$FILE --server 7777 --savepath ./build/us_pc/
|