Fix parallel execution of Makefiles
* lisp/Makefile (.NOTPARALLEL): * mk/targets.mk (.NOTPARALLEL): Do not fiddle with explicit .NOTPARALLEL. Given that we provide correct dependencies, parallel execution should work, and it does work.
This commit is contained in:
parent
77403e376a
commit
4c5132b9f1
|
@ -1,4 +1,3 @@
|
|||
.NOTPARALLEL: # always run this make serially
|
||||
.SUFFIXES: # we don't need default suffix rules
|
||||
ifeq ($(MAKELEVEL), 0)
|
||||
$(error This make needs to be started as a sub-make from the toplevel directory.)
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
.EXPORT_ALL_VARIABLES:
|
||||
.NOTPARALLEL: .PHONY
|
||||
# Additional distribution files
|
||||
DISTFILES_extra= Makefile etc
|
||||
|
||||
|
|
Loading…
Reference in New Issue