nvm/Makefile

20 lines
309 B
Makefile
Raw Normal View History

URCHIN=`which urchin`
SHELLS=sh bash dash ksh zsh
2014-05-09 22:23:14 +08:00
.PHONY: $(SHELLS) test test_shell
fast: $(SHELLS)
$(SHELLS):
@printf '\n\033[0;34m%s\033[0m\n' "Running tests in $@"
@$@ $(URCHIN) -f test/fast
test: fast
@$(URCHIN) -f test/slow
2014-05-09 22:23:14 +08:00
test_shell:
@$(SHELL) $(URCHIN) -f test/$(TEST_SUITE)
2014-03-23 04:10:18 +08:00
default: test