X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=blobdiff_plain;f=misc%2Ftools%2Fall%2Fxonotic.subr;h=0938974ca9b46bcfa8fd36442cf7de74267d49b7;hp=2be0bdff438c6bfa084afbc99324ea40184748db;hb=b21867380b07a080c13c6bc29eb8fffe40b51df1;hpb=4a6dfe119835eb566f6837759239f181b2b74fd1 diff --git a/misc/tools/all/xonotic.subr b/misc/tools/all/xonotic.subr index 2be0bdff..0938974c 100644 --- a/misc/tools/all/xonotic.subr +++ b/misc/tools/all/xonotic.subr @@ -28,7 +28,7 @@ case "$cmd" in cleanqcc=false cleanqc=false compiled0= - debug=debug + debug=release # when changing this default, change the description in the zsh autocompletion script if [ -z "$CC" ]; then export CC="gcc" fi @@ -54,8 +54,11 @@ case "$cmd" in cleanqc=true shift ;; - -r|-p) + -d|-p|-r) case "$1" in + -d) + debug=debug + ;; -p) debug=profile ;; @@ -84,9 +87,13 @@ case "$cmd" in esac done - TARGETS="sv-$debug sdl-$debug" if [ x"`uname`" = x"Darwin" ]; then + TARGETS="sv-$debug sdl-$debug" export CC="$CC -fno-reorder-blocks" + elif [ -n "$WE_HATE_OUR_USERS" ]; then + TARGETS="sv-$debug sdl-$debug" + else + TARGETS="sv-$debug cl-$debug sdl-$debug" fi if [ $# -gt 0 ] && [ x"$1" = x"" ]; then @@ -103,6 +110,9 @@ case "$cmd" in sdl) TARGETS="$TARGETS sdl-$debug" ;; + glx) + TARGETS="$TARGETS cl-$debug" + ;; dedicated) TARGETS="$TARGETS sv-$debug" ;; @@ -322,6 +332,10 @@ case "$cmd" in sdl) shift ;; + glx) + client=-$1 + shift + ;; esac if ! [ -x "darkplaces/darkplaces$client" ]; then @@ -374,9 +388,9 @@ case "$cmd" in fi ;; help) - $ECHO " $SELF compile [-c] [-qc] [-r|-p] [-0] [-1] [sdl|dedicated]" + $ECHO " $SELF compile [-c] [-qc] [-d|-p|-r] [-0] [-1] [sdl|glx|dedicated]" $ECHO " $SELF update-maps" - $ECHO " $SELF run [sdl|dedicated] options..." + $ECHO " $SELF run [sdl|glx|dedicated] options..." $ECHO " $SELF compile-map mapname1 mapname2... (e.g. \"./all compile-map dance drain fuse\")" handled=false ;;