Use $(RM) in Makefiles instead of 'rm -f'

Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Emil Medve
2007-07-14 12:51:44 -05:00
committed by Junio C Hamano
parent 3f2fd36ebc
commit 4cb08df553
5 changed files with 48 additions and 43 deletions

View File

@ -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)