UNPKG

311 BPlain TextView Raw
1.PHONY: all clean distclean test watch
2
3all: node_modules
4 ./node_modules/.bin/coffee -o lib -c src
5
6clean:
7 $(RM) -r lib
8
9distclean:
10 $(RM) -r node_modules
11
12test: all
13 ./node_modules/.bin/supervisor -- bin/workit test
14
15watch: node_modules
16 ./node_modules/.bin/coffee -o lib -cw src
17
18node_modules:
19 npm install