fix(bin/lmake): use '-j' option for make
[skip ci]
This commit is contained in:
parent
0d5e346143
commit
57410e7818
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ def call_makefile(makefile, arg):
|
|||
""" Call makefile with a target generated from a given arg """
|
||||
env_copy = os.environ.copy()
|
||||
env_copy['LEAN'] = find_lean_exe()
|
||||
cmd = ["make", "-C", os.path.dirname(makefile)]
|
||||
cmd = ["make", "-j", "-C", os.path.dirname(makefile)]
|
||||
if arg:
|
||||
target = get_target(arg)
|
||||
cmd.append(target)
|
||||
|
|
Loading…
Reference in a new issue