mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-12-24 17:02:50 +00:00
7 lines
249 B
Bash
Executable file
7 lines
249 B
Bash
Executable file
#!/bin/bash
|
|
|
|
haxe compile-linux.hxml
|
|
cd native
|
|
gcc -o marblegame -O2 -I . -L /usr/local/lib marblegame.c /usr/local/lib/{ui.hdll,openal.hdll,fmt.hdll,sdl.hdll,uv.hdll,ssl.hdll,datachannel.hdll} -lSDL2 -lhl -lm -luv
|
|
strip marblegame
|
|
cp marblegame ..
|