Merge pull request #303 from strk/master-make-all

Add a default "make all" rule to "build" the project (npm install)
This commit is contained in:
Brian C 2013-03-14 06:34:06 -07:00
commit 8f58409195

View File

@ -9,6 +9,9 @@ node-command := xargs -n 1 -I file node file $(params)
.PHONY : test test-connection test-integration bench test-native \
build/default/binding.node jshint
all:
npm install
help:
@echo "make prepare-test-db [connectionString=pg://<your connection string>]"
@echo "make test-all [connectionString=pg://<your connection string>]"