From 5e640c2534a287210f83dfb492dbe9a37b895a39 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sat, 16 Aug 2014 21:18:25 -0400 Subject: add bash-completion --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2512cc7..2a2798c 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,9 @@ BINPROGS = \ MANPAGES = \ man/asp.1 +BASH_COMPLETION = \ + shell/bash-completion + INCLUDES = \ package.inc.sh \ remote.inc.sh \ @@ -36,9 +39,9 @@ clean: $(RM) $(BINPROGS) $(MANPAGES) install: all - install -dm755 $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/share/man/man1 - install -m755 $(BINPROGS) $(DESTDIR)$(PREFIX)/bin - install -m644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1 + install -Dm755 $(BINPROGS) $(DESTDIR)$(PREFIX)/bin + install -Dm644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1 + install -Dm644 $(BASH_COMPLETION) $(DESTDIR)$(PREFIX)/share/bash-completion/completions/asp dist: git archive --format=tar --prefix=$(PACKAGE_NAME)-$(VER)/ v$(VER) | gzip -9 > $(PACKAGE_NAME)-$(VER).tar.gz -- cgit v1.2.3-54-g00ecf