diff options
| author | Enrico Tassi | 2020-04-06 16:58:28 +0200 |
|---|---|---|
| committer | Enrico Tassi | 2020-04-06 16:58:28 +0200 |
| commit | 04292ee5af69f168d31345119e25226eadee8ae8 (patch) | |
| tree | 28000234ae9cd1abd1fb1b6d715bf76a18fb7dd5 | |
| parent | 2089207415565e8a28816f53b61d9292d04f4c59 (diff) | |
| parent | a78a3619f0446d06346512ee3b855c5bf1eb5e78 (diff) | |
Merge PR #12006: [coq_makefile] remove .lia.cache and .nia.cache by make cleanall
Reviewed-by: gares
| -rw-r--r-- | doc/changelog/08-tools/12006-issue5632.rst | 4 | ||||
| -rw-r--r-- | tools/CoqMakefile.in | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/doc/changelog/08-tools/12006-issue5632.rst b/doc/changelog/08-tools/12006-issue5632.rst new file mode 100644 index 0000000000..162d56b1b6 --- /dev/null +++ b/doc/changelog/08-tools/12006-issue5632.rst @@ -0,0 +1,4 @@ +- **Added:** + ``Makefile`` generated by ``coq_makefile`` erases ``.lia.cache`` and ``.nia.cache`` by ``make cleanall``. + (`#12006 <https://github.com/coq/coq/pull/12006>`_, + by Olivier Laurent). diff --git a/tools/CoqMakefile.in b/tools/CoqMakefile.in index b8e498898b..f72b99c57c 100644 --- a/tools/CoqMakefile.in +++ b/tools/CoqMakefile.in @@ -616,6 +616,7 @@ cleanall:: clean $(HIDE)rm -f $(VOFILES:.vo=.v.before-timing) $(HIDE)rm -f $(VOFILES:.vo=.v.after-timing) $(HIDE)rm -f $(VOFILES:.vo=.v.timing.diff) + $(HIDE)rm -f .lia.cache .nia.cache .PHONY: cleanall archclean:: |
