You've already forked sm64coopdx
mirror of
https://github.com/izzy2lost/sm64coopdx.git
synced 2026-03-26 16:56:02 -07:00
12e8312eda
* Ignore Visual Studio Stuff * Added a few scripts for development * Improved the development scripts * Added option to choose between 2 different keyboard control variants in the chat * Improved and added new batch scripts for development purposes * Hotfix * Converted the .BAT-Scripts to .SH-Scripts and moved them to the "development" folder and fixed a bug in the already existing "compile.sh" file * Fixed some stuff * Removed 7 .sh-scripts
17 lines
246 B
Bash
Executable File
17 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
if [ $# -eq 0 ]; then
|
|
make DEBUG=1 DEVELOPMENT=1 STRICT=1 -j
|
|
else
|
|
make DEBUG=1 DEVELOPMENT=1 -j
|
|
fi
|
|
|
|
# find file
|
|
FILE=./build/us_pc/sm64coopdx.exe
|
|
if [ ! -f "$FILE" ]; then
|
|
FILE=./build/us_pc/sm64coopdx
|
|
fi
|
|
|
|
$FILE &
|