branch: master
commit 07e0daaf7f8298e2efbcbc9a7e985d2d08cde22a
Author: Basil L. Contovounesios <[email protected]>
Commit: Oleh Krehel <[email protected]>
Makefile: Reuse implicit variable RM if present
---
Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index f4e456f..fe07015 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,7 @@ emacs ?= emacs
elmake = $(emacs) -batch -l makefi.el -f
LOAD = -l colir.el -l ivy-overlay.el -l ivy.el -l swiper.el -l counsel.el
+RM ?= rm -f
all: test
@@ -25,6 +26,6 @@ update-issues:
$(elmake) update-issues
clean:
- rm -f *.elc
+ $(RM) *.elc
.PHONY: all compile clean test update-issues checkdoc