From: Michael Reed Date: Sun, 21 Sep 2014 22:34:33 +0000 (-0400) Subject: Makefile: switch out 'rm -f' with '$(RM)' to match previous invocations X-Git-Url: https://git.danieliu.xyz/?a=commitdiff_plain;h=31f91305483a4efa430fe1ce181f62921c77e39f;p=smdp.git Makefile: switch out 'rm -f' with '$(RM)' to match previous invocations --- diff --git a/Makefile b/Makefile index 64ecee4..3c1715e 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ install: mdp install -m 755 mdp $(PREFIX)$(DESTDIR)/mdp uninstall: - rm -f $(PREFIX)$(DESTDIR)/mdp + $(RM) $(PREFIX)$(DESTDIR)/mdp .PHONY: all clean install uninstall