summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJason Ryan <jasonwryan@gmail.com>2014-08-21 06:26:31 +1200
committerDave Reisner <dreisner@archlinux.org>2014-08-20 18:44:21 -0400
commit7f6ce5326c8d09230ef819f5aaa1a0d321919f80 (patch)
tree590dc65046490a533b556841ee1c1c1b46627853 /Makefile
parent5ef73d04af4caf815988a08bd55dfcee26806685 (diff)
downloadasp32-7f6ce5326c8d09230ef819f5aaa1a0d321919f80.tar.xz
Initial commit of zsh completion
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ea1c171..e01c275 100644
--- a/Makefile
+++ b/Makefile
@@ -12,6 +12,9 @@ MANPAGES = \
BASH_COMPLETION = \
shell/bash-completion
+ZSH_COMPLETION = \
+ shell/zsh-completion
+
INCLUDES = \
package.inc.sh \
remote.inc.sh \
@@ -43,6 +46,7 @@ install: all
install -m755 $(BINPROGS) $(DESTDIR)$(PREFIX)/bin
install -m644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1
install -Dm644 $(BASH_COMPLETION) $(DESTDIR)$(PREFIX)/share/bash-completion/completions/asp
+ install -Dm644 $(ZSH_COMPLETION) $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_asp
dist:
git archive --format=tar --prefix=$(PACKAGE_NAME)-$(VER)/ $(VER) | gzip -9 > $(PACKAGE_NAME)-$(VER).tar.gz