Skip to content

Commit b074228

Browse files
Villetaneuseandres-erbsen
authored andcommitted
Add -j in make
1 parent 2d3f8ea commit b074228

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

Makefile

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ DUNE=dev/with-rocq-wrap.sh dune
33
.PHONY: clean all install dune dune-install
44

55
all install:
6-
+$(MAKE) -C theories $@
6+
+$(MAKE) -j -C theories $@
77

88
dune:
99
$(DUNE) build -p rocq-stdlib @install
@@ -25,8 +25,10 @@ stdlib-html:
2525
$(DUNE) build --root . @stdlib-html
2626

2727
clean:
28-
find . -name '*.vo' \
29-
-o -name '*.vok' \
30-
-o -name '*.vos' \
31-
-o -name '*.glob' \
32-
-exec rm -vf {} +
28+
rm -rf _build
29+
find . \
30+
\( -name '*.vo' \
31+
-o -name '*.vok' \
32+
-o -name '*.vos' \
33+
-o -name '*.glob' \
34+
\) -exec rm -vf {} +

0 commit comments

Comments
 (0)