Revision 12039
Added by Aaron Marcuse-Kubitza about 11 years ago
input.Makefile | ||
---|---|---|
506 | 506 |
verify = $(if $(reverify),($(inDatasrc); cat $<)|$(psqlExport)\ |
507 | 507 |
--set=datasource="'$(datasrc)'" >$@) |
508 | 508 |
|
509 |
verify/%.out: $(mappings)/verify.%.sql _always
|
|
509 |
verify/%.out: verify/%.out.sql _always
|
|
510 | 510 |
$(verify) |
511 | 511 |
.PRECIOUS: verify/%.out # save partial output in case of error to help debugging |
512 | 512 |
# default: |
Also available in: Unified diff
inputs/input.Makefile: verify/%.out: use a *.sql file in the verify/ directory itself to generate *.out, so that each datasource can have its own set of output queries. for datasources that should share the same set of queries, they can instead be symlinked to the same file.