diff options
author | Vincent Laporte <Vincent.Laporte@gmail.com> | 2018-05-28 16:05:05 +0000 |
---|---|---|
committer | Vincent Laporte <Vincent.Laporte@gmail.com> | 2018-05-29 09:33:48 +0000 |
commit | 21b7b67e7a6e9d4c4afaf13f2b77bab116709465 (patch) | |
tree | c818eec55a95245a1b97ad203d60184f116f11cf /Makefile | |
parent | ba809fa844b517e8a3606d9f6a6cac22e5585e27 (diff) |
[Makefile] New target “install-merlin”
Building this target installs the files that are used by merlin:
- .merlin files (.merlin);
- bin-annot files (.cmt, .cmti);
- source files (.ml, .mli).
Plug-in developpers can thus work with an “installed” version of Coq.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -78,6 +78,7 @@ export MLLIBFILES := $(call find, '*.mllib') export MLPACKFILES := $(call find, '*.mlpack') export ML4FILES := $(call find, '*.ml4') export CFILES := $(call findindir, 'kernel/byterun', '*.c') +export MERLINFILES := $(call find, '.merlin') # NB: The lists of currently existing .ml and .mli files will change # before and after a build or a make clean. Hence we do not export |