diff --git a/linux_scripts/supermake b/linux_scripts/supermake index bb98b19..abe3f07 100755 --- a/linux_scripts/supermake +++ b/linux_scripts/supermake @@ -2,7 +2,7 @@ #Tip: You can create a supermake.local file and this script will get the variable from there! BINNAME=openarena MODNAME=oax -#ARCH should be either i386 or x86_64 +#ARCH should be either i386 (32 bit) or x86_64 (64 bit) ARCH=i386 if [ -r ./supermake.local ] ; then diff --git a/linux_scripts/supermake_native b/linux_scripts/supermake_native index 5fdd25e..3502d17 100755 --- a/linux_scripts/supermake_native +++ b/linux_scripts/supermake_native @@ -2,6 +2,8 @@ #Tip: You can create a supermake.local file and this script will get the variable from there! BINNAME=openarena MODNAME=oax +#ARCH should be either i386 (32 bit) or x86_64 (64 bit) +ARCH=i386 if [ -r ./supermake.local ] ; then source ./supermake.local @@ -19,6 +21,6 @@ mkdir -p ~/.openarena/$MODNAME pushd .. #Build, pak it and start -make && cd build/release-linux-x86_64/baseq3 && cp *.so ~/.openarena/$MODNAME/ && $BINNAME +set fs_game $MODNAME +set debug 1 +set sv_pure 0 +vm_ui 0 +vm_game 0 +vm_cgame 0 +make && cd build/release-linux-$ARCH/baseq3 && cp *.so ~/.openarena/$MODNAME/ && $BINNAME +set fs_game $MODNAME +set debug 1 +set sv_pure 0 +vm_ui 0 +vm_game 0 +vm_cgame 0 popd