Files
socket.io/Makefile
2011-02-09 18:44:07 -08:00

14 lines
210 B
Makefile

test:
./support/expresso/bin/expresso -I lib $(TESTFLAGS) tests/*.js
test-cov:
@TESTFLAGS=--cov $(MAKE) test
example:
node ./example/server.js
example-ssl:
node ./example/server-ssl.js
.PHONY: example