diff options
Diffstat (limited to 'src/make.bash')
-rwxr-xr-x | src/make.bash | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/make.bash b/src/make.bash index 5eeb370a1..b36d515a8 100755 --- a/src/make.bash +++ b/src/make.bash @@ -3,9 +3,12 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. +set -e +export MAKEFLAGS=-j4 + bash clean.bash -for i in lib9 libbio libmach_amd64 +for i in lib9 libbio libmach_amd64 libregexp do cd $i make install |