All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
10 install -d $(DESTDIR)$(PREFIX)/bin
11 install -m 0755 $(self) $(DESTDIR)$(PREFIX)/bin
12 install -d $(DESTDIR)$(PREFIX)/share/man/man1
13 install -m 0644 $(manpages) $(DESTDIR)$(PREFIX)/share/man/man1
14 install -d $(DESTDIR)$(PREFIX)/share/doc/$(self)
15 install -m 0644 README.md $(DESTDIR)$(PREFIX)/share/doc/$(self)
16 install -m 0644 doc/hooks $(DESTDIR)$(PREFIX)/share/doc/$(self)
17 install -d $(DESTDIR)$(PREFIX)/share/zsh/vendor-completions
18 install -m 0644 _$(self) $(DESTDIR)$(PREFIX)/share/zsh/vendor-completions
22 $(self).1: doc/$(self).1.ronn
23 ronn < doc/$(self).1.ronn > $(self).1
29 rm -rf $(DESTDIR)$(PREFIX)/bin/$(self)
30 rm -rf $(DESTDIR)$(PREFIX)/share/man/man1/$(self).1
31 rm -rf $(DESTDIR)$(PREFIX)/share/doc/$(self)
32 rm -rf $(DESTDIR)$(PREFIX)/share/zsh/vendor-completions/_$(self)
34 # Potentially harmful, used a non-standard option on purpose.
35 # If PREFIX=/usr/local and that's empty...
37 rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(PREFIX)/bin/
38 rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(PREFIX)/share/man/man1/
39 rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(PREFIX)/share/doc/
40 rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(PREFIX)/share/zsh/vendor-completions/
43 if which git > /dev/null ; then :; else echo "'git' not found, exiting..."; exit 1; fi
46 @if [ -x /usr/games/cowsay ]; then /usr/games/cowsay "I hope you're happy now..."; fi