makeall: Like BuildIt, respect MAKEJOBS

This commit is contained in:
Robin Burchell 2019-05-15 20:26:31 +02:00 committed by Andreas Kling
commit c6bc23a748
Notes: sideshowbarker 2024-07-19 14:08:18 +09:00

View file

@ -2,7 +2,11 @@
sudo id
make_cmd="make -j3"
if [ -z "$MAKEJOBS" ]; then
MAKEJOBS=$(nproc)
fi
make_cmd="make -j $MAKEJOBS"
$make_cmd -C ../LibC clean && \
$make_cmd -C ../LibC && \