quakec/tools/qc-compiler-lin.sh
Steam Deck User 89742dc652 GLOBAL: Retire CTR QuakeC, Merge with PSP.
This rebrands the two under the "HANDHELD" name. The two platforms now
function identically in regards to server functions, making them
unified in behavior and general server-reliant functions.
2022-12-28 15:21:19 -05:00

36 lines
No EOL
893 B
Bash
Executable file

#!/usr/bin/env bash
cd ../
# create build directories
mkdir -p build/{pc,handheld,nx,vita}
cd bin/
echo ""
echo "========================"
echo " compiling FTE CCQC "
echo "========================"
echo ""
./fteqcc-cli-lin -srcfile ../progs/fte-client.src
echo ""
echo "========================"
echo " compiling FTE SSQC "
echo "========================"
echo ""
./fteqcc-cli-lin -srcfile ../progs/fte-server.src
echo ""
echo "========================"
echo " compiling PSP & 3DS QC "
echo "========================"
echo ""
./fteqcc-cli-lin -srcfile ../progs/handheld.src
echo ""
echo "========================"
echo " compiling NX-QS QC "
echo "========================"
echo ""
./fteqcc-cli-lin -srcfile ../progs/nx.src
echo ""
echo "========================"
echo " compiling VITA QC "
echo "========================"
echo ""
./fteqcc-cli-lin -srcfile ../progs/vita.src