Skip to content

Commit

Permalink
Merge pull request #785 from proux01/makefile-notparallel
Browse files Browse the repository at this point in the history
Add NOTPARALLEL to Makefile
  • Loading branch information
gares authored Feb 25, 2025
2 parents 19cc599 + 069bc2c commit ab6881e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ dune_wrap = $(shell command -v coqc > /dev/null || echo "etc/with-rocq-wrap.sh")
dune = $(dune_wrap) dune $(1) $(DUNE_$(1)_FLAGS --stop-on-first-error
DUNE_IN_FILES = $(shell find . -name "dune.in" | sed -e 's/.in$$//')
# This makefile is mostly calling dune and dune doesn't like
# being called in parralel, so we enforce -j1
.NOTPARALLEL:
all: $(DUNE_IN_FILES)
$(call dune,build)
$(call dune,build) builtin-doc
Expand Down

0 comments on commit ab6881e

Please sign in to comment.