Javascript node test-suite makefile fixes for parallel make
This commit is contained in:
parent
088d3f6319
commit
f105590c0a
1 changed files with 4 additions and 3 deletions
|
|
@ -58,7 +58,8 @@ ifeq (node,$(JSENGINE))
|
|||
$(SWIG) -c++ -javascript $(SWIGOPT) ../$*.i;
|
||||
|
||||
nodejs_swig_and_compile = \
|
||||
$(NODEGYP) --loglevel=silent --directory $* configure build 1>>/dev/null
|
||||
$(NODEGYP) --loglevel=silent --directory $* configure 1>>/dev/null
|
||||
$(NODEGYP) --loglevel=silent --directory $* build 1>>/dev/null
|
||||
|
||||
run_testcase = \
|
||||
if [ -f $(srcdir)/$*$(SCRIPTSUFFIX) ]; then \
|
||||
|
|
@ -68,13 +69,13 @@ ifeq (node,$(JSENGINE))
|
|||
%.cpptest:
|
||||
$(_setup)
|
||||
$(__setup)
|
||||
$(nodejs_swig_and_compile)
|
||||
+$(nodejs_swig_and_compile)
|
||||
$(run_testcase)
|
||||
|
||||
%.ctest:
|
||||
$(_setup)
|
||||
$(__setup)
|
||||
$(nodejs_swig_and_compile)
|
||||
+$(nodejs_swig_and_compile)
|
||||
$(run_testcase)
|
||||
|
||||
%.multicpptest:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue