Add read-docs make target.

This commit is contained in:
2012-03-22 23:35:48 +00:00
parent 431b40f506
commit 427631be0b

View File

@@ -1,5 +1,5 @@
.SILENT:
.PHONY: docs test deploy
.PHONY: deploy docs read-docs test
BIN = ./node_modules/.bin
@@ -13,5 +13,8 @@ deploy:
docs:
$(BIN)/docco app.coffee $(shell find $(LIB_PATH) -name '*.coffee')
read-docs:
open docs/app.html
test:
$(BIN)/mocha -R $(REPORTER) $(shell find $(TEST_PATH) -name '*.test.coffee')