Revision 7076
Added by Aaron Marcuse-Kubitza about 12 years ago
input.Makefile | ||
---|---|---|
167 | 167 |
catSrcs = $(bin)/cat$(if $(nonXml),_csv) $(srcs) |
168 | 168 |
withCatSrcs = $(catSrcs:$(bin)/%=$(bin)/with_%) -- |
169 | 169 |
|
170 |
# Usage: `make {--silent|-s} inputs/<datasrc>/cat` (don't echo make commands)
|
|
170 |
# Run with `make -s` to avoid echoing make commands
|
|
171 | 171 |
cat: $(importTables:%=%/cat) _always ; |
172 | 172 |
|
173 | 173 |
%/cat: _always |
... | ... | |
365 | 365 |
log_ = $*/logs/$(if $(n),n=$(n).,)$(version).log.sql |
366 | 366 |
|
367 | 367 |
# Displays the import log file path |
368 |
# Usage: `make -s inputs/<datasrc>/log_file` (don't echo make commands)
|
|
368 |
# Run with `make -s` to avoid echoing make commands
|
|
369 | 369 |
%/log_file: _always |
370 | 370 |
echo $$(pwd)/$(log_) |
371 | 371 |
|
Also available in: Unified diff
Makefiles: Changed "Usage: `make -s ...`" to "Run with `make -s` to avoid echoing make commands"