makefile passes native parameter to tests

This commit is contained in:
brianc 2011-03-02 18:23:30 -06:00
parent b76ced7144
commit f5f5a40abd

View File

@ -6,8 +6,9 @@ host=localhost
port=5432
database=postgres
verbose=false
native=false
params := -u $(user) --password $(password) -p $(port) -d $(database) -h $(host) --verbose $(verbose)
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)