make -j 8 becomes make -j

This commit is contained in:
Lup Yuen Lee 2024-11-29 17:45:26 +08:00
parent 1c20e7cb55
commit 7e22f83435
4 changed files with 10 additions and 10 deletions

View file

@ -26,7 +26,7 @@ function build_nuttx {
pushd ../nuttx
## Build NuttX
make -j 8
make -j
## Return to previous folder
popd
@ -39,10 +39,10 @@ function build_apps {
pushd ../nuttx
## Build Apps Filesystem
make -j 8 export
make -j export
pushd ../apps
./tools/mkimport.sh -z -x ../nuttx/nuttx-export-*.tar.gz
make -j 8 import
make -j import
popd
## Return to previous folder

View file

@ -26,7 +26,7 @@ function build_nuttx {
pushd ../nuttx
## Build NuttX
make -j 8
make -j
## Return to previous folder
popd
@ -39,10 +39,10 @@ function build_apps {
pushd ../nuttx
## Build Apps Filesystem
make -j 8 export
make -j export
pushd ../apps
./tools/mkimport.sh -z -x ../nuttx/nuttx-export-*.tar.gz
make -j 8 import
make -j import
popd
## Return to previous folder

View file

@ -26,7 +26,7 @@ function build_nuttx {
pushd ../nuttx
## Build NuttX
make -j 8
make -j
## Return to previous folder
popd

View file

@ -26,7 +26,7 @@ function build_nuttx {
pushd ../nuttx
## Build NuttX
make -j 8
make -j
## Return to previous folder
popd
@ -39,10 +39,10 @@ function build_apps {
pushd ../nuttx
## Build Apps Filesystem
make -j 8 export
make -j export
pushd ../apps
./tools/mkimport.sh -z -x ../nuttx/nuttx-export-*.tar.gz
make -j 8 import
make -j import
popd
## Return to previous folder