diff options
| author | Enrico Tassi | 2019-01-10 10:45:20 +0100 |
|---|---|---|
| committer | Enrico Tassi | 2019-01-10 16:39:49 +0100 |
| commit | ac72003e5f068b9cc7f521c45e497736ef4f0560 (patch) | |
| tree | 91f61b8a6462c9008f1170ef6eb27a00608f62e1 /Makefile.dev | |
| parent | fae1e1bb8de23d84b13d8e36e183a4147d404b25 (diff) | |
[make] support for QUICK
The variable QUICK enables the quick compilation chain:
- all v files are compiled with -quick to vio files (also
-native-compiler no, since it is quicker)
- then all vio files are turned to vo files $NJOBS at a time
All occurrences of .vo use now .$(VO) that can be either
.vo or .vio depending of QUICK being defined. Targets that
only make sense for .vo files have to use $(VAR:.$(VO)=.vo)
Diffstat (limited to 'Makefile.dev')
| -rw-r--r-- | Makefile.dev | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.dev b/Makefile.dev index 9659f602d7..13b85dfad4 100644 --- a/Makefile.dev +++ b/Makefile.dev @@ -63,7 +63,7 @@ revision: coqlight: theories-light tools coqbinaries -states: theories/Init/Prelude.vo +states: theories/Init/Prelude.$(VO) miniopt: $(COQTOPEXE) pluginsopt minibyte: $(COQTOPBYTE) pluginsbyte |
