UNPKG

249 BPlain TextView Raw
1export PATH := node_modules/.bin:$(PATH)
2export CRIXALIS_PORT = 30000
3
4all: test
5
6test: compile
7 vows --spec -i t/*.js
8
9compile: clean
10 coffee --compile t/lib/*.coffee t/*.coffee
11
12clean:
13 rm -rf t/*.js t/lib/*.js t/tmp_*
14
15.PHONY: clean compile test