scripts: Add MAKEFLAGS variable

This commit is contained in:
Johan Gunnarsson 2021-07-20 22:29:18 +02:00
parent fa8521ff95
commit ceb68e4f78
2 changed files with 2 additions and 2 deletions

View File

@ -27,4 +27,4 @@ cd arm-trusted-firmware
export CROSS_COMPILE=$(dirname $(which "${TUPLE}-gcc"))/"${TUPLE}-"
# Build ATF
make PLAT="${PLAT}" DEBUG=1 bl31
make ${MAKEFLAGS} PLAT="${PLAT}" DEBUG=1 bl31

View File

@ -41,4 +41,4 @@ esac
export CROSS_COMPILE=$(dirname $(which "${TUPLE}-gcc"))/"${TUPLE}-"
# Build U-Boot
make "${DEFCONFIG}" && make
make ${MAKEFLAGS} "${DEFCONFIG}" && make ${MAKEFLAGS}