TEST_DIR = test

all: test
  
test:
	@@echo "Running all tests via vows"
	@@vows ${TEST_DIR}/*-test.js
  
.PHONY: all test