node-postgres/Makefile

45 lines
1.2 KiB
Makefile
Raw Normal View History

SHELL := /bin/bash
connectionString=pg://
2012-05-31 11:12:14 +08:00
params := $(connectionString)
2010-12-25 10:09:55 +08:00
2010-12-25 10:22:15 +08:00
node-command := xargs -n 1 -I file node file $(params)
.PHONY : test test-connection test-integration bench test-native build/default/binding.node
help:
echo "make test-all connectionString=pg://<your connection string>"
2010-12-25 10:22:15 +08:00
test: test-unit
test-all: test-unit test-integration test-native test-binary
2010-12-31 11:26:23 +08:00
bench:
@find benchmark -name "*-bench.js" | $(node-command)
build/default/binding.node:
2012-06-19 11:41:48 +08:00
@node-gyp rebuild
2011-02-23 12:51:30 +08:00
2010-12-25 10:22:15 +08:00
test-unit:
@find test/unit -name "*-tests.js" | $(node-command)
test-connection:
@node script/test-connection.js $(params)
test-connection-binary:
2012-05-31 11:12:14 +08:00
@node script/test-connection.js $(params) binary
2011-03-05 23:51:47 +08:00
test-native: build/default/binding.node
2011-03-06 01:31:59 +08:00
@echo "***Testing native bindings***"
@find test/native -name "*-tests.js" | $(node-command)
2012-05-31 11:12:14 +08:00
@find test/integration -name "*-tests.js" | $(node-command) native
2010-12-25 10:22:15 +08:00
test-integration: test-connection
2011-03-06 01:31:59 +08:00
@echo "***Testing Pure Javascript***"
2010-12-25 10:22:15 +08:00
@find test/integration -name "*-tests.js" | $(node-command)
test-binary: test-connection-binary
@echo "***Testing Pure Javascript (binary)***"
2012-05-31 11:12:14 +08:00
@find test/integration -name "*-tests.js" | $(node-command) binary