aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 9 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 28f287b..76a8413 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,14 @@
DESTDIR = /usr/local/bin
INSTALL = install --mode=755
+SCRIPTS = \
+ git-multimail \
+ add-git-user \
+ add-git-repo \
+ add-authorized-keys
.PHONY: install
install:
- $(INSTALL) git_multimail.py $(DESTDIR)/git-multimail
- $(INSTALL) add-git-user $(DESTDIR)
- $(INSTALL) add-git-repo $(DESTDIR)
- $(INSTALL) add-authorized-keys $(DESTDIR)
+ @for i in $(SCRIPTS) ; do \
+ $(INSTALL) $$i $(DESTDIR) ; \
+ echo "Installed $$i" ; \
+ done