From 427631be0b6d7f55219a0814bea0086532eea35a Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 22 Mar 2012 23:35:48 +0000 Subject: [PATCH] Add read-docs make target. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 97f9b40..c4c08d5 100644 --- a/Makefile +++ b/Makefile @@ -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')