File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change 1+ dune = @dune $(1 ) $(DUNE_FLAGS )
2+
13all :
2- @dune build
4+ $( call dune, build)
35.PHONY : all
46
57build-core :
6- @dune build theories
8+ $( call dune, build) theories
79.PHONY : build-core
810
911build-apps :
10- @dune build $$(find apps -type d -name theories )
12+ $( call dune, build) $$(find apps -type d -name theories )
1113.PHONY : build-apps
1214
1315build :
14- @dune build @install
16+ $( call dune, build) @install
1517.PHONY : build
1618
1719test-core :
18- @dune runtest tests
20+ $( call dune, runtest) tests
1921.PHONY : test-core
2022
2123test-apps :
22- @dune build $$(find apps -type d -name tests )
24+ $( call dune, build) $$(find apps -type d -name tests )
2325.PHONY : test-apps
2426
2527test :
26- @dune runtest
27- @dune build $$(find apps -type d -name tests )
28+ $( call dune, runtest)
29+ $( call dune, build) $$(find apps -type d -name tests )
2830.PHONY : test
2931
3032examples :
31- @dune build examples
33+ $( call dune, build) examples
3234.PHONY : examples
3335
3436doc : build
@@ -45,12 +47,12 @@ doc: build
4547 @cp etc/tracer.png doc/
4648
4749clean :
48- @dune clean
50+ $( call dune, clean)
4951.PHONY : clean
5052
5153install :
52- @dune build -p coq-elpi
53- @dune install coq-elpi
54+ $( call dune, build) -p coq-elpi
55+ $( call dune, install) coq-elpi
5456.PHONY : install
5557
5658nix :
You can’t perform that action at this time.
0 commit comments