diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-09-16 22:09:22 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-09-16 22:09:22 -0300 |
commit | 14071b3ca8f6c17ed9eea5b2203c753851c88dc9 (patch) | |
tree | c6126ba98bb3808183b48a49cf2076153dad825e /Makefile | |
parent | 58d263f79c47a06ddb8fe54ad27ef738fef5e642 (diff) | |
download | keyringer-14071b3ca8f6c17ed9eea5b2203c753851c88dc9.tar.gz keyringer-14071b3ca8f6c17ed9eea5b2203c753851c88dc9.tar.bz2 |
Makefile fixes, setting section on debian/control
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -37,10 +37,14 @@ install_doc: $(INSTALL) -D --mode=0644 LICENSE $(DESTDIR)/$(PREFIX)/share/doc/$(PACKAGE)/LICENSE install_man: - $(INSTALL) -D --mode=0644 share/man/keyringer.1 $(DESTDIR)/$(PREFIX)/share/man/man1 + $(INSTALL) -D --mode=0644 share/man/keyringer.1 $(DESTDIR)/$(PREFIX)/share/man/man1/keyringer.1 + +# TODO: zsh completion +install_completion: + $(INSTALL) -D --mode=0644 lib/keyringer/completions/bash/keyringer $(DESTDIR)/$(PREFIX)/etc/bash_completion.d/keyringer install: clean - @make install_lib install_share install_bin install_doc install_man + @make install_lib install_share install_bin install_doc install_man install_completion build_man: pandoc -s -w man share/man/keyringer.1.mdwn -o share/man/keyringer.1 |