diff --git a/.gitignore b/.gitignore index 002f7226..5d16b68b 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,11 @@ native *.exe *.obj +marblegame.hl +marblegame settings.json +console.log +data/replays/ release Export node_modules diff --git a/compile-linux.hxml b/compile-linux.hxml new file mode 100644 index 00000000..6e65d3c6 --- /dev/null +++ b/compile-linux.hxml @@ -0,0 +1,6 @@ +-cp src +-lib heaps +-lib hlsdl +-D highDPI +-hl native/marblegame.c +--main Main diff --git a/compile-linux.sh b/compile-linux.sh new file mode 100755 index 00000000..4854f57d --- /dev/null +++ b/compile-linux.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +haxe compile-linux.hxml +cd native +gcc -o marblegame -g -I . -L /usr/local/lib marblegame.c /usr/local/lib/{ui.hdll,openal.hdll,fmt.hdll,sdl.hdll} -lSDL2 -lhl -lm +cp marblegame .. diff --git a/data/font/markerFelt.png b/data/font/MarkerFelt.png similarity index 100% rename from data/font/markerFelt.png rename to data/font/MarkerFelt.png diff --git a/data/sound/Checkpoint.wav b/data/sound/checkpoint.wav similarity index 100% rename from data/sound/Checkpoint.wav rename to data/sound/checkpoint.wav diff --git a/marblegame.hl b/marblegame.hl deleted file mode 100644 index cb1a74e0..00000000 Binary files a/marblegame.hl and /dev/null differ