From 19e9dddc1931777b0e55ff4d66a8128be4472c4f Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Thu, 14 Mar 2013 09:37:53 +0100 Subject: [PATCH] Add a default "make all" rule to "build" the project (npm install) --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 5b7dee1..383b151 100644 --- a/Makefile +++ b/Makefile @@ -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://]" @echo "make test-all [connectionString=pg://]"