Files
socket.io/Makefile
Guillermo Rauch e48eb876a9 Makefile: cleanup
2013-12-26 09:14:21 -03:00

20 lines
376 B
Makefile

REPORTER = dot
build:
@./node_modules/.bin/browserify --standalone eio -o engine.io.js .
test:
@./node_modules/.bin/mocha \
--reporter $(REPORTER) \
test/index.js
@./node_modules/.bin/zuul -- test/index.js
test-cov:
@./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- \
--require ./test/common \
--reporter $(REPORTER) \
$(TESTS)
.PHONY: test