diff win95kggui/dep/ft2play/ft2play/make-linux.sh @ 126:8e4ee43d3b81

remove submodules
author Paper <mrpapersonic@gmail.com>
date Sun, 01 Oct 2023 03:48:43 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/win95kggui/dep/ft2play/ft2play/make-linux.sh	Sun Oct 01 03:48:43 2023 -0400
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+rm release/other/ft2play &> /dev/null
+echo Compiling, please wait...
+
+gcc -DNDEBUG -DAUDIODRIVER_SDL ../audiodrivers/sdl/*.c ../*.c src/*.c -g0 -lSDL2 -lm -lpthread -Wshadow -Winit-self -Wall -Wno-uninitialized -Wno-missing-field-initializers -Wno-unused-result -Wno-strict-aliasing -Wextra -Wunused -Wunreachable-code -Wswitch-default -O3 -o release/other/ft2play
+
+rm ../*.o src/*.o &> /dev/null
+
+echo Done. The executable can be found in \'release/other\' if everything went well.