X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/45f737466fb5ae31b97b9c7b3a18d6469da37f2b..ccf40b91a67127084ee81e875ee5b77b3b0f019d:/Makefile diff --git a/Makefile b/Makefile index a52e9ed..18ea7cd 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ PREFIX=/usr +RONN ?= ronn self=vcsh manpages=$(self).1 @@ -20,7 +21,7 @@ install: all manpages: $(manpages) $(self).1: doc/$(self).1.ronn - ronn < doc/$(self).1.ronn > $(self).1 + $(RONN) < doc/$(self).1.ronn > $(self).1 || rm $(self).1 clean: rm -rf $(self).1 @@ -43,4 +44,4 @@ test: if which git > /dev/null ; then :; else echo "'git' not found, exiting..."; exit 1; fi moo: - if [ -x /usr/games/cowsay ]; then /usr/games/cowsay "I hope you're happy now..."; fi + @if [ -x /usr/games/cowsay ]; then /usr/games/cowsay "I hope you're happy now..."; fi