Skip to content

Commit 2d3f8ea

Browse files
Villetaneuseandres-erbsen
authored andcommitted
Add clean in Makefile
Also make `dune`, `all`, `install` and `dune-install` .PHONY
1 parent 747aadd commit 2d3f8ea

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
DUNE=dev/with-rocq-wrap.sh dune
22

3+
.PHONY: clean all install dune dune-install
4+
35
all install:
46
+$(MAKE) -C theories $@
57

@@ -21,3 +23,10 @@ refman-html:
2123

2224
stdlib-html:
2325
$(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 {} +

0 commit comments

Comments
 (0)