diff options
| author | Emilio Jesus Gallego Arias | 2018-09-20 23:50:26 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-09-20 23:52:00 +0200 |
| commit | f81fa592ba84b1fcad1226092ba458335ccb829f (patch) | |
| tree | 95b4a7990403d64941c989ea9b2baede15a7dc45 | |
| parent | 4f85e540349004d4f9388a90061fc4a1541d9c40 (diff) | |
[dune] Add "watch" target for continuous build mode.
`make -f Makefile.dune watch` will now watch for files changes
and rebuild what is needed.
This feature requires `fswatch` or `inotifywait`, and Dune >= 1.2.0.
Note that the current CI image ships an older Dune version.
| -rw-r--r-- | Makefile.dune | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.dune b/Makefile.dune index e04982650f..81afa5bb91 100644 --- a/Makefile.dune +++ b/Makefile.dune @@ -12,6 +12,7 @@ help: @echo "Welcome to Coq's Dune-based build system. Targets are:" @echo " - states: build a minimal functional coqtop" @echo " - world: build all binaries and libraries" + @echo " - watch: build all binaries and libraries [continuous build]" @echo " - release: build Coq in release mode" @echo " - apidoc: build ML API documentation" @echo " - clean: remove build directory and autogenerated files" @@ -27,6 +28,9 @@ states: voboot world: voboot dune build $(DUNEOPT) @install +watch: voboot + dune build $(DUNEOPT) @install -w + release: voboot dune build $(DUNEOPT) -p coq |
