diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/emacs/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/emacs/Makefile b/contrib/emacs/Makefile index 98aa0aae9b..5e94d6fcd3 100644 --- a/contrib/emacs/Makefile +++ b/contrib/emacs/Makefile @@ -7,6 +7,7 @@ INSTALL ?= install INSTALL_ELC = $(INSTALL) -m 644 prefix ?= $(HOME) emacsdir = $(prefix)/share/emacs/site-lisp +RM ?= rm -f all: $(ELC) @@ -17,4 +18,4 @@ install: all %.elc: %.el $(EMACS) -batch -f batch-byte-compile $< -clean:; rm -f $(ELC) +clean:; $(RM) $(ELC) |