From 83bca5af259daaa1865a5c165de42b7ee5bb7dab Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 10 May 2009 12:41:54 +0200 Subject: Makefile: Be more verbose about what is installed, add uninstall target --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2b9b618..4764de2 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,11 @@ all: $(TARGETS) @echo "Nothing to be done" install: - @echo "Installing scripts to $(BINDIR)" + @echo "Installing the following scripts to $(BINDIR)" + @echo " $(TARGETS)" @install -m755 -t $(BINDIR) $(TARGETS) +uninstall: + @echo "Uninstalling the following scripts from $(BINDIR):" + @echo " $(TARGETS)" + @for s in $(TARGETS); do rm -f "$(BINDIR)/$${s}"; done -- cgit v1.2.3-54-g00ecf