Makefile: switch out 'rm -f' with '$(RM)' to match previous invocations
[smdp.git] / Makefile
index 64ecee4..3c1715e 100644 (file)
--- 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