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 2d3f8ea commit b074228Copy full SHA for b074228
Makefile
@@ -3,7 +3,7 @@ DUNE=dev/with-rocq-wrap.sh dune
3
.PHONY: clean all install dune dune-install
4
5
all install:
6
- +$(MAKE) -C theories $@
+ +$(MAKE) -j -C theories $@
7
8
dune:
9
$(DUNE) build -p rocq-stdlib @install
@@ -25,8 +25,10 @@ stdlib-html:
25
$(DUNE) build --root . @stdlib-html
26
27
clean:
28
- find . -name '*.vo' \
29
- -o -name '*.vok' \
30
- -o -name '*.vos' \
31
- -o -name '*.glob' \
32
- -exec rm -vf {} +
+ rm -rf _build
+ find . \
+ \( -name '*.vo' \
+ -o -name '*.vok' \
+ -o -name '*.vos' \
33
+ -o -name '*.glob' \
34
+ \) -exec rm -vf {} +
0 commit comments