use relative paths to node package binaries

This commit is contained in:
2012-03-08 01:00:10 +00:00
parent 6a77fa11b0
commit 5f0e243141

View File

@@ -3,12 +3,13 @@
COFFEE_SRC = src
COFFEE_OUT = .
BIN = ./node_modules/.bin
build:
coffee -c -o $(COFFEE_OUT) $(COFFEE_SRC)
$(BIN)/coffee -c -o $(COFFEE_OUT) $(COFFEE_SRC)
watch:
coffee -cw -o $(COFFEE_OUT) $(COFFEE_SRC)
$(BIN)/coffee -cw -o $(COFFEE_OUT) $(COFFEE_SRC)
docs:
docco $(shell find $(COFFEE_SRC) -name '*.coffee')
$(BIN)/docco $(shell find $(COFFEE_SRC) -name '*.coffee')