diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-11-09 18:48:00 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-11-09 18:48:00 +0100 |
commit | 80031e92198d90af9f3953f43a2e0ace5cabaa66 (patch) | |
tree | bd0e1638f52616af2761dd86a11cd88cf94a35b9 | |
parent | fe84badb3bb03b264ee18e4986c8f2e710bcb16d (diff) |
makefile: Added rules for the zsh completion
-rw-r--r-- | makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -6,9 +6,16 @@ install: install -m 755 bin/apt-why /usr/local/bin install -m 644 -D build/apt-why.1 /usr/local/share/man/man1/apt-why.1 +install-completion: + install -m 644 provides/zsh/completions/_apt-why \ + /usr/share/zsh/functions/Completion/Debian + clean: $(RM) -r build uninstall: $(RM) /usr/local/bin/apt-why $(RM) /usr/local/share/man/man1/apt-why.1 + +uninstall-completion: + $(RM) /usr/share/zsh/functions/Completion/Debian/_apt-why |