Skip to content

Commit ab6881e

Browse files
authored
Merge pull request #785 from proux01/makefile-notparallel
Add NOTPARALLEL to Makefile
2 parents 19cc599 + 069bc2c commit ab6881e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ dune_wrap = $(shell command -v coqc > /dev/null || echo "etc/with-rocq-wrap.sh")
22
dune = $(dune_wrap) dune $(1) $(DUNE_$(1)_FLAGS --stop-on-first-error
33
DUNE_IN_FILES = $(shell find . -name "dune.in" | sed -e 's/.in$$//')
44
5+
# This makefile is mostly calling dune and dune doesn't like
6+
# being called in parralel, so we enforce -j1
7+
.NOTPARALLEL:
8+
59
all: $(DUNE_IN_FILES)
610
$(call dune,build)
711
$(call dune,build) builtin-doc

0 commit comments

Comments
 (0)