diff options
| author | Enrico Tassi | 2019-01-25 22:37:57 +0100 |
|---|---|---|
| committer | Enrico Tassi | 2019-01-25 22:37:57 +0100 |
| commit | 4b006833d6f866a33024e674d300f74592d24622 (patch) | |
| tree | eba3c36d343766700496cfd4ce74584d2f78cf96 | |
| parent | 07be5ac6dcbaeb7dac4c38d6146d41d96e96da59 (diff) | |
| parent | dddfb9f99218dcc140c1a2904b0c8d0f11d9a279 (diff) | |
Merge PR #9362: Fix makefile .merlin for unit tests
Reviewed-by: gares
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -82,7 +82,8 @@ export MLPACKFILES := $(call find, '*.mlpack') export MLGFILES := $(call find, '*.mlg') export CFILES := $(call findindir, 'kernel/byterun', '*.c') -MERLININFILES := $(call find, '.merlin.in') +# NB our find wrapper ignores the test suite +MERLININFILES := $(call find, '.merlin.in') test-suite/unit-tests/.merlin.in export MERLINFILES := $(MERLININFILES:.in=) # NB: The lists of currently existing .ml and .mli files will change |
