diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |