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.
2 DOCDIR=$(PREFIX)/share/doc/$(self)
3 ZSHDIR=$(PREFIX)/share/zsh/vendor-completions
12 install -d $(DESTDIR)$(PREFIX)/bin
13 install -m 0755 $(self) $(DESTDIR)$(PREFIX)/bin
14 install -d $(DESTDIR)$(PREFIX)/share/man/man1
15 install -m 0644 $(manpages) $(DESTDIR)$(PREFIX)/share/man/man1
16 install -d $(DESTDIR)$(DOCDIR)
17 install -m 0644 README.md $(DESTDIR)$(DOCDIR)
18 install -m 0644 doc/hooks $(DESTDIR)$(DOCDIR)
19 install -d $(DESTDIR)$(ZSHDIR)
20 install -m 0644 _$(self) $(DESTDIR)$(ZSHDIR)
24 $(self).1: doc/$(self).1.ronn
25 ronn < doc/$(self).1.ronn > $(self).1
31 rm -rf $(DESTDIR)$(PREFIX)/bin/$(self)
32 rm -rf $(DESTDIR)$(PREFIX)/share/man/man1/$(self).1
33 rm -rf $(DESTDIR)$(DOCDIR)
34 rm -rf $(DESTDIR)$(ZSHDIR)/_$(self)
36 # Potentially harmful, used a non-standard option on purpose.
37 # If PREFIX=/usr/local and that's empty...
39 rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(PREFIX)/bin/
40 rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(PREFIX)/share/man/man1/
41 rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(shell dirname $(DOCDIR))
42 rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(ZSHDIR)
45 if which git > /dev/null ; then :; else echo "'git' not found, exiting..."; exit 1; fi
48 @if [ -x /usr/games/cowsay ]; then /usr/games/cowsay "I hope you're happy now..."; fi