Project

General

Profile

« Previous | Next » 

Revision 7076

Makefiles: Changed "Usage: `make -s ...`" to "Run with `make -s` to avoid echoing make commands"

View differences:

inputs/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

  
lib/common.Makefile
98 98

  
99 99
clean: # make sure `make clean` always works
100 100

  
101
# Usage: `make {--silent|-s} version` (don't echo make commands)
101
# Run with `make -s` to avoid echoing make commands
102 102
version: _always
103 103
	echo $(version)

Also available in: Unified diff