From: Michael Göhler Date: Sun, 21 Sep 2014 23:53:16 +0000 (+0200) Subject: Merge pull request #33 from Pyrohh/master X-Git-Url: https://git.danieliu.xyz/?a=commitdiff_plain;h=d2546ae4a3dc3424f9357aea800880b0dd49486f;hp=02de567610f7c582e5618e75970b40e4802b005e;p=smdp.git Merge pull request #33 from Pyrohh/master 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