We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19cc599 + 069bc2c commit ab6881eCopy full SHA for ab6881e
Makefile
@@ -2,6 +2,10 @@ dune_wrap = $(shell command -v coqc > /dev/null || echo "etc/with-rocq-wrap.sh")
2
dune = $(dune_wrap) dune $(1) $(DUNE_$(1)_FLAGS --stop-on-first-error
3
DUNE_IN_FILES = $(shell find . -name "dune.in" | sed -e 's/.in$$//')
4
5
+# This makefile is mostly calling dune and dune doesn't like
6
+# being called in parralel, so we enforce -j1
7
+.NOTPARALLEL:
8
+
9
all: $(DUNE_IN_FILES)
10
$(call dune,build)
11
$(call dune,build) builtin-doc
0 commit comments