From 7e85ffea332ee0b45a632dde0f8a3d8d90ca4549 Mon Sep 17 00:00:00 2001 From: jaseg Date: Mon, 1 Apr 2013 19:19:55 +0200 Subject: Added zsh and bash completion --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 890ea35..0a9b632 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -PREFIX?=/usr +PREFIX?=/usr/local install: install -m 0755 ponysay.py $(PREFIX)/bin @@ -10,6 +10,8 @@ install: install -m 0755 -d $(PREFIX)/share/doc/ponysay install -m 0755 -t $(PREFIX)/share/doc/ponysay COPYING install -m 0755 -t $(PREFIX)/share/doc/ponysay README.md + install -m 0644 completion/zsh-completion.sh /usr/share/zsh/site-functions/_ponysay + install -m 0755 completion/bash-completion.sh /etc/bash_completion.d/ponysay.sh uninstall: rm $(PREFIX)/bin/ponysay @@ -19,4 +21,8 @@ uninstall: rmdir $(PREFIX)/share/ponysay rm $(PREFIX)/share/doc/ponysay/* rmdir $(PREFIX)/share/doc/ponysay + rm /usr/share/zsh/site-functions/_ponysay + rm /etc/bash_completion.d/ponysay.sh + +reinstall: uninstall install -- cgit