node-postgres/Makefile

37 lines
819 B
Makefile

SHELL := /bin/bash
user=postgres
password=1234
host=localhost
port=5432
database=postgres
verbose=false
native=false
params := -u $(user) --password $(password) -p $(port) -d $(database) -h $(host) --verbose $(verbose) --native $(native)
node-command := xargs -n 1 -I file node file $(params)
.PHONY : test test-connection test-integration bench test-native build
test: test-unit
test-all: test-unit test-integration
bench:
@find benchmark -name "*-bench.js" | $(node-command)
build:
@node-waf configure build
test-unit:
@find test/unit -name "*-tests.js" | $(node-command)
test-connection:
@node script/test-connection.js $(params)
test-native: build
@find test/native -name "*-tests.js" | $(node-command)
test-integration: test-connection
@find test/integration -name "*-tests.js" | $(node-command)