Skip to content

Commit 8f58409

Browse files
committed
Merge pull request brianc#303 from strk/master-make-all
Add a default "make all" rule to "build" the project (npm install)
2 parents fd288be + 19e9ddd commit 8f58409

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ node-command := xargs -n 1 -I file node file $(params)
99
.PHONY : test test-connection test-integration bench test-native \
1010
build/default/binding.node jshint
1111

12+
all:
13+
npm install
14+
1215
help:
1316
@echo "make prepare-test-db [connectionString=pg://<your connection string>]"
1417
@echo "make test-all [connectionString=pg://<your connection string>]"

0 commit comments

Comments
 (0)