From 5ee63e782fd9a893801cb8c5419cec947643902f Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Mon, 16 Apr 2012 17:39:10 +1200 Subject: [PATCH] Makefile: Add "uninstall" as a synonym for "remove" target "uninstall" is the GNU standard name for the target, so it'll be the one most users are used to. Signed-off-by: Michael Kerrisk --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1d21f2cfb..9efa7d2d5 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ screen: fi; \ done -remove: +uninstall remove: for i in man?/*; do \ rm -f $(MANDIR)/"$$i" $(MANDIR)/"$$i".gz $(MANDIR)/"$$i".bz2; \ done