pinosaur
/
smdp.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
02de567
)
Makefile: switch out 'rm -f' with '$(RM)' to match previous invocations
author
Michael Reed
<m.reed@mykolab.com>
Sun, 21 Sep 2014 22:34:33 +0000
(18:34 -0400)
committer
Michael Reed
<m.reed@mykolab.com>
Sun, 21 Sep 2014 22:34:33 +0000
(18:34 -0400)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
64ecee4
..
3c1715e
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-41,7
+41,7
@@
install: mdp
install -m 755 mdp $(PREFIX)$(DESTDIR)/mdp
uninstall:
install -m 755 mdp $(PREFIX)$(DESTDIR)/mdp
uninstall:
-
rm -f
$(PREFIX)$(DESTDIR)/mdp
+
$(RM)
$(PREFIX)$(DESTDIR)/mdp
.PHONY: all clean install uninstall
.PHONY: all clean install uninstall