mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-15 08:45:06 +00: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
16 lines
246 B
Bash
Executable file
16 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 &
|