RT1050_FreeRTOS_Hello/build_all.sh
imi415 2239e5e6dc
All checks were successful
continuous-integration/drone/push Build is passing
Added eLCDIF drivers, modified liner scripts.
2021-02-08 23:09:12 +08:00

21 lines
264 B
Bash

#!/bin/sh
TARGETS=(
"debug"
"release"
"sdram_debug"
"sdram_release"
"flexspi_nor_debug"
"flexspi_nor_release"
)
bash clean.sh
for TARGET in "${TARGETS[@]}" ; do
ENV=${TARGET} bash build.sh $@
RET=$?
if [[ ! 0 -eq ${RET} ]]; then
exit ${RET}
fi
done