Revision 1082
Added by Aaron Marcuse-Kubitza almost 13 years ago
inputs/input.Makefile | ||
---|---|---|
146 | 146 |
out_cmd = $(psqlAsBien) --no-align --field-separator=' ' --pset=footer=off\ |
147 | 147 |
--pset=null=NULL <$< >$@ |
148 | 148 |
|
149 |
ifneq ($(dbFile),) |
|
150 |
%.ref: %.ref.sql |
|
151 |
$(dbAsBien) $(db) <$< >$@ |
|
152 |
.PRECIOUS: %.ref |
|
153 |
endif |
|
154 |
|
|
149 | 155 |
else |
150 | 156 |
verify: _always ; |
151 | 157 |
endif |
... | ... | |
219 | 225 |
dbEngineExt := $(subst .,,$(suffix $(basename $(notdir $(dbFile))))) |
220 | 226 |
db := $(notdir $(realpath .)) |
221 | 227 |
|
222 |
%.ref: %.ref.sql |
|
223 |
$(inputDbAsBien) $(db) <$< >$@ |
|
224 |
.PRECIOUS: %.ref |
|
225 |
|
|
226 | 228 |
#### Installation |
227 | 229 |
|
228 | 230 |
install: _always db ; |
Also available in: Unified diff
input.Makefile: Fixed syntax error in verify %.ref target (outdated variable name)