uspec.js: first public release

This commit is contained in:
Loic Nageleisen 2013-08-19 18:44:10 +02:00
commit ec516c106c
8 changed files with 769 additions and 0 deletions

22
Makefile Normal file
View file

@ -0,0 +1,22 @@
all: release
release: uspec.js
%.js: %.coffee
coffee --compile $<
run_spec.js: fake_module.js uspec.js uspec_spec.js
cat $^ > $@
node_spec: uspec_spec.js uspec.js
node $<
phantom_spec: run_spec.js
phantomjs $<
spec: node_spec phantom_spec
clean:
@rm -f *.js
.PHONY: release node_spec phantom_spec spec