mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-22 20:01:34 +00:00
89742dc652
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.
36 lines
No EOL
893 B
Bash
Executable file
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 |