blob: adefdd2991dd137c9bbe3df4b38aaee4ff1b3c09 (
plain)
1
2
3
4
5
|
# Copied from Richard Hartmann's vcsh:
# https://github.com/RichiH/vcsh/blob/master/Makefile
test:
@if which git > /dev/null; then : ; else echo "'git' not found, exiting..." ; exit 1; fi
@if which prove > /dev/null; then source virtualenv/bin/activate; prove; else echo "'prove' not found; not running tests"; fi
|