Add a default "make all" rule to "build" the project (npm install)

This commit is contained in:
Sandro Santilli 2013-03-14 09:37:53 +01:00
parent 0d0737d67b
commit 19e9dddc19

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>]"