We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19cc599 commit 069bc2cCopy full SHA for 069bc2c
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