2024-04-21 05:11:15 +02:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# FRT templates arm32v6
|
2024-04-21 11:58:01 +02:00
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=frt frt_arch=arm32v6 frt_cross=auto "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=frt frt_arch=arm32v6 frt_cross=auto "$@"
|
2024-04-21 05:11:15 +02:00
|
|
|
|
|
|
|
# FRT SDL templates arm32v6
|
2024-04-21 11:58:01 +02:00
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=frt_sdl frt_arch=arm32v6 frt_cross=auto "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=frt_sdl frt_arch=arm32v6 frt_cross=auto "$@"
|
2024-04-21 05:11:15 +02:00
|
|
|
|
|
|
|
# FRT templates arm32v7
|
2024-04-21 11:58:01 +02:00
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=frt frt_arch=arm32v7 frt_cross=auto "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=frt frt_arch=arm32v7 frt_cross=auto "$@"
|
2024-04-21 05:11:15 +02:00
|
|
|
|
|
|
|
# FRT SDL templates arm32v7
|
2024-04-21 11:58:01 +02:00
|
|
|
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=frt_sdl frt_arch=arm32v7 frt_cross=auto "$@"
|
|
|
|
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=frt_sdl frt_arch=arm32v7 frt_cross=auto "$@"
|
2024-04-21 05:11:15 +02:00
|
|
|
|