Project

General

Profile

1 3761 aaronmk
selfDir_uZPPqC := $(dir $(lastword $(MAKEFILE_LIST)))
2
root := $(selfDir_uZPPqC)..
3
include $(root)/lib/common.Makefile
4
5
6 783 aaronmk
##### Configuration
7
8 1921 aaronmk
# Command line
9 1190 aaronmk
log ?= $(if $(test),,1)
10 1257 aaronmk
profile ?=
11 1983 aaronmk
quiet ?=
12 1620 aaronmk
reverify ?= 1
13 1990 aaronmk
use_staged ?= $(by_col)
14 1921 aaronmk
15
# Makefile
16 5427 aaronmk
exts ?= csv tsv txt dmp xml
17 783 aaronmk
test_n ?= 2
18
19
##### Vars/functions
20
21 1821 aaronmk
# Paths
22 5008 aaronmk
datasrc := $(patsubst .%,%,$(notdir $(realpath .)))
23 1821 aaronmk
bin := $(root)/bin
24
mappings := $(root)/mappings
25
26 368 aaronmk
# Make
27 640 aaronmk
SHELL := /bin/bash
28 1509 aaronmk
selfMake = $(MAKE) --makefile=../input.Makefile
29 1821 aaronmk
subMake = $(MAKE) $(@:$(root)/%=%) --directory=$(root)
30 404 aaronmk
+_ = $(+:_%=)
31 368 aaronmk
addBeforeExt = $(basename $(2))$(1)$(suffix $(2))
32
33 1742 aaronmk
# OS
34
os := $(shell uname)
35
forOs = $(patsubst %,%-$(filter Linux Darwin,$(os)),$(1))
36
37
# Formatting
38
SED = sed -$(if $(filter Darwin,$(os)),E,r)
39
40 640 aaronmk
# Terminal
41 1184 aaronmk
termCols := $(shell tput cols)
42 640 aaronmk
esc := '['
43
reset := $(esc)'0m'
44
emph := $(esc)'7m '
45
endEmph := ' '$(reset)
46
47 5209 aaronmk
# User interaction
48
49
confirm = $(if $(shell read -p $(emph)"$(1)"$(endEmph)$$'$(if\
50
$(2),\n$(2))\nContinue? (y/n) ' REPLY; test "$$REPLY" = y && echo t),,\
51
$(error Aborting))
52
53 368 aaronmk
# Commands
54 1245 aaronmk
MKDIR = mkdir -p
55
mkdir = $(MKDIR) $(@D)
56 395 aaronmk
CP = cp -p
57 1184 aaronmk
diff = diff --unified=2
58 3721 aaronmk
diffIgnoreSpace = $(diff) --ignore-space-change
59 1184 aaronmk
diffVerbose = $(if $(verbose),diff --side-by-side --left-column\
60
--width=$(termCols),$(diff))
61 368 aaronmk
62 1918 aaronmk
# BIEN commands
63 4137 aaronmk
sortFilenames = $(shell $(bin)/sort_filenames $(1))
64 1524 aaronmk
selfMap = $(bin)/cols 0 0
65 1081 aaronmk
psqlOpts := --set ON_ERROR_STOP=1 --quiet
66 1289 aaronmk
psqlAsBien := $(bin)/psql_vegbien $(psqlOpts)
67 4408 aaronmk
# Usage: ($(inDatasrc); cat $(file))|$(psqlCmd)
68
inDatasrc = echo 'SET search_path TO "$(datasrc)";'
69 353 aaronmk
70 1594 aaronmk
# SVN
71
addDir = $(if $(wildcard $(1)/),svn add --depth=empty $(1),svn mkdir $(1))
72 1771 aaronmk
setSvnIgnore = svn propset svn:ignore $(2) $(1)
73 1594 aaronmk
define addDirWithIgnore
74
$(addDir)
75 1771 aaronmk
$(setSvnIgnore)
76 1594 aaronmk
endef
77
78 4414 aaronmk
##### Environment
79
80
export PATH := $(bin):$(PATH)
81
82 783 aaronmk
##### General targets
83 250 aaronmk
84 418 aaronmk
all: _always maps ;
85 247 aaronmk
86 383 aaronmk
clean: _always
87 256 aaronmk
	$(RM) $(all)
88
89 1742 aaronmk
remake: _always clean
90
	+$(selfMake)
91
# re-run make so that cache of existing files is reset
92
93 1627 aaronmk
make_script = ./$< >$@
94 368 aaronmk
95 1604 aaronmk
%/: % _always ;
96
97 4379 aaronmk
%: %.make
98 4420 aaronmk
	$(if $(wildcard $@),,"time" $(make_script))
99 4411 aaronmk
# Only remake if doesn't exist. This prevents unintentional remaking when the
100
# make script is newly checked out from svn (which sets the mod time to now) but
101
# the output is synced externally.
102
# Can't remove prereq to do this, because it determines when the rule applies.
103 4182 aaronmk
.PRECIOUS: % # save partial outputs of aborted src make scripts
104 1627 aaronmk
105 783 aaronmk
##### SVN
106 250 aaronmk
107 4221 aaronmk
add: _always
108 4182 aaronmk
	$(call setSvnIgnore,.,'*')
109 4459 aaronmk
	$(call addDirWithIgnore,logs,$$'*.log.sql\n*.trace')
110 4124 aaronmk
	$(call addDirWithIgnore,verify,'*.out')
111 4223 aaronmk
	$(call addFile,import_order.txt)
112 766 aaronmk
113 4217 aaronmk
# Adds a new table subdir
114
%/add: _always
115
	$(call addDirWithIgnore,$*,'*')
116
	$(call addDirWithIgnore,$*/logs,$$'*.log.sql\n*.trace')
117
118 1969 aaronmk
##### Existing maps discovery
119 1955 aaronmk
120 4182 aaronmk
sortFile := import_order.txt
121 4181 aaronmk
122 4253 aaronmk
tables := $(if $(wildcard $(sortFile)),$(shell cat $(sortFile)))
123
    # $(shell) replaces "\n" with " "
124 4182 aaronmk
allSubdirs := $(call wildcard/,*/)
125 4464 aaronmk
allTables := $(call sortFilenames,$(filter-out _% verify logs,$(allSubdirs:%/=%)))
126 4256 aaronmk
joinedTables := $(filter-out $(tables),$(allTables))
127
allTables := $(joinedTables) $(tables)# move joined tables to beginning
128 4253 aaronmk
ifeq ($(tables),)# none specified in sort file
129
tables := $(allTables)
130 4181 aaronmk
endif
131 4137 aaronmk
132 5035 aaronmk
anyMap := %/map.csv %/VegBIEN.csv %/unmapped_terms.csv %/new_terms.csv
133 3574 aaronmk
134 4214 aaronmk
extsFilter := $(addprefix %.,$(exts))
135
dataOnly = $(filter $(extsFilter),$(1))
136
137 4182 aaronmk
anyTest = $*/test.%
138 4214 aaronmk
srcsOnly = $(filter-out $(anyMap) $(anyTest) %/logs,$(call dataOnly,$(1)))
139 4120 aaronmk
140 4844 aaronmk
vocab := $(mappings)/VegCore.csv
141 4658 aaronmk
coreMap := $(mappings)/VegCore-VegBIEN.csv
142 4687 aaronmk
dict := $(mappings)/Veg+-VegCore.csv
143 783 aaronmk
144 4672 aaronmk
viaMaps := $(tables:%=%/map.csv)
145 783 aaronmk
146 4117 aaronmk
autogenMaps := $(subst map.,VegBIEN.,$(viaMaps))
147 728 aaronmk
directMaps := $(autogenMaps) $(filter-out $(autogenMaps),\
148 4182 aaronmk
$(wildcard */VegBIEN.csv))
149 728 aaronmk
150 1969 aaronmk
##### Sources
151
152 4182 aaronmk
srcs = $(call sortFilenames,$(call srcsOnly,$(wildcard $*/*)))
153 4450 aaronmk
nonHeaderSrcs = $(filter-out %/header.csv,$(srcs))
154
isRef = $(if $(nonHeaderSrcs),,1)
155
    # empty subdir, so references an already-installed staging table
156 4452 aaronmk
isXml = $(filter %.xml,$(nonHeaderSrcs))
157
nonXml = $(if $(isXml),,1)
158
isCsv = $(if $(nonHeaderSrcs),$(if $(isXml),,1))
159 1969 aaronmk
    # true if $(srcs) non-empty and contains no *.xml
160 4465 aaronmk
catSrcs = $(bin)/cat$(if $(nonXml),_csv) $(srcs)
161 1969 aaronmk
withCatSrcs = $(catSrcs:$(bin)/%=$(bin)/with_%) --
162
163 1986 aaronmk
# Usage: `make {--silent|-s} inputs/<datasrc>/cat` (don't echo make commands)
164 4252 aaronmk
cat: $(tables:%=%/cat) _always ;
165 1969 aaronmk
166 4252 aaronmk
%/cat: _always
167 1969 aaronmk
	$(catSrcs)
168
169 4121 aaronmk
##### Staging tables installation
170 1921 aaronmk
171 4534 aaronmk
dbExports := $(sort $(wildcard *.schema.sql))# schemas first
172
dbExports += $(sort $(filter-out $(dbExports),$(wildcard *.sql)))# all others
173 4438 aaronmk
dbExports := $(strip $(dbExports))# += adds extra whitespace
174 4425 aaronmk
allInstalls := $(if $(dbExports),sql) $(allTables)
175 1921 aaronmk
176 4413 aaronmk
install: _always schema $(allInstalls:%=%/install) ;
177
178 5209 aaronmk
uninstall: _always confirm_rm_schema rm_schema ;
179 4121 aaronmk
# rm_schema will also drop all staging tables
180 1921 aaronmk
181
reinstall: _always uninstall install ;
182
183 5209 aaronmk
confirm_rm_schema: _always
184
	$(if $(filter TNRS,$(datasrc)),$(call confirm,WARNING: This will delete the\
185
TNRS cache!,To save it: make backups/TNRS.backup-remake))
186
187 4121 aaronmk
schema: _always
188 1921 aaronmk
	-echo 'CREATE SCHEMA "$(datasrc)";'|$(psqlAsBien)
189
# ignore errors if schema exists
190
191 4121 aaronmk
rm_schema: _always
192 1921 aaronmk
	echo 'DROP SCHEMA IF EXISTS "$(datasrc)" CASCADE;'|$(psqlAsBien)
193
194 5162 aaronmk
installLog := logs/install.log.sql
195 4453 aaronmk
196 5162 aaronmk
logInstall = $(if $(log),$(if $(quiet),$(2)$(1)$(installLog) 2>&1,2>&1|tee $(3)\
197
$(1)$(installLog)))
198
logInstall* = $(call logInstall,$*/,>)
199
logInstall*Add = $(call logInstall,$*/,>>,-a)# append to log
200
201 4413 aaronmk
# Must come before %/install to override it
202 4434 aaronmk
sql/install: $(dbExports)
203 4510 aaronmk
	($(inDatasrc); cat $+|grep -vF 'SET search_path')|"time" $(psqlAsBien) \
204 4454 aaronmk
$(logInstall)
205 4413 aaronmk
206 4423 aaronmk
# The export must be created with:
207 4429 aaronmk
# `--compatible=postgresql --add-locks=false --set-charset --no-create-info`
208 4431 aaronmk
# Must come before `%.sql: _MySQL/%.sql` to override it
209 4429 aaronmk
%.data.sql: _MySQL/%.data.sql
210
	$(bin)/my2pg.data <$< >$@
211
212 4431 aaronmk
# The export must be created with:
213
# `--compatible=postgresql --add-locks=false --set-charset`
214
# Add `--no-data` to create a schema-only export.
215
%.sql: _MySQL/%.sql
216
	$(bin)/my2pg <$< >$@
217
218 4449 aaronmk
cleanup = (prefix=; . $(bin)/vegbien_dest; env schema=$(datasrc) table=$*\
219 4550 aaronmk
$(bin)/csv2db) $(logInstall*Add)
220 4449 aaronmk
221
define exportHeader
222
$(cleanup)
223
echo 'SELECT * FROM "$(datasrc)"."$*" LIMIT 0;'|$(psqlAsBien) \
224
--no-align --field-separator=, --pset=footer=off >$*/header.csv
225
endef
226
227 4260 aaronmk
# For staging tables which are derived by joining together other staging tables.
228 4263 aaronmk
%/install %/header.csv: %/create.sql _always
229 4527 aaronmk
	($(inDatasrc); echo 'CREATE TABLE "$*" AS'; cat $<; echo ';')|"time" \
230 4543 aaronmk
$(psqlAsBien) --echo-all --set=table='"$*"' $(logInstall*)
231 4449 aaronmk
	$(exportHeader)
232 5441 aaronmk
.PRECIOUS: %/header.csv
233 4260 aaronmk
234 4252 aaronmk
%/install: _always
235 4456 aaronmk
	$(if $(isRef),$(exportHeader),$(if $(nonXml),$(import_install_)))
236 3476 aaronmk
import_install_ = (prefix=; . $(bin)/vegbien_dest; "time" nice -n +5\
237 5028 aaronmk
env schema=$(datasrc) table=$* $(bin)/csv2db $(catSrcs) $(logInstall*))
238 1921 aaronmk
239 5155 aaronmk
cleanup: _always $(tables:%=%/cleanup) ;
240
241 5184 aaronmk
# WARNING: This removes any index comments, due to a PostgreSQL bug.
242
# This occurs because ALTER TABLE recreates the index but not its comment.
243 5155 aaronmk
%/cleanup: _always
244
	$(cleanup)
245 5186 aaronmk
	$(if $(wildcard $*/cleanup.sql),($(inDatasrc); cat $*/cleanup.sql;)\
246
|"time" $(psqlAsBien) --echo-all --set=table='"$*"' $(logInstall*Add))
247 5155 aaronmk
248 1777 aaronmk
##### Maps building
249
250 4345 aaronmk
# WARNING: You CANNOT make a subdir using `make inputs/<datasrc>/<subdir>/`.
251
# You must instead make the entire datasource dir: `make inputs/<datasrc>/`
252
253 4646 aaronmk
# Maps to (try to) build are added to this
254 1779 aaronmk
maps :=
255
256 4208 aaronmk
srcRoot = $(mappings)/root.sh
257 3569 aaronmk
mkSrcMap = $(catSrcs)|(. $(srcRoot); env datasrc=$(datasrc) $(bin)/src_map >$@)
258 1779 aaronmk
259 3572 aaronmk
# Via maps cleanup
260 4182 aaronmk
ifneq ($(filter %/.map.csv.last_cleanup,$(MAKECMDGOALS)),)
261 4844 aaronmk
%/.map.csv.last_cleanup: %/map.csv $(vocab) $(dict)
262
	$(bin)/in_place $< $(bin)/canon 1 $(vocab)
263 4659 aaronmk
	$(bin)/in_place $< $(bin)/canon 1 $(dict)
264 4653 aaronmk
	$(bin)/in_place $< $(bin)/translate 1 $(dict)
265 3572 aaronmk
	touch $@
266 4601 aaronmk
	+$(selfMake) $(<:%/map.csv=%/unmapped_terms.csv)
267
	+$(selfMake) $(<:%/map.csv=%/new_terms.csv)
268 5253 aaronmk
.PRECIOUS: %/.map.csv.last_cleanup
269 3572 aaronmk
else
270 4644 aaronmk
%/map.csv: _always
271
	$(if $(wildcard $@),,$(if $(nonXml),$(mkSrcMap)))
272 4182 aaronmk
	+$(selfMake) $(@:%/map.csv=%/.map.csv.last_cleanup)
273 5254 aaronmk
.PRECIOUS: %/map.csv
274 3572 aaronmk
endif
275
276 4641 aaronmk
%/VegBIEN.csv: %/map.csv $(coreMap)
277 4656 aaronmk
	<$< $(bin)/cat_cols 1 2|$(bin)/join $(coreMap)|$(bin)/sort_map >$@
278 1530 aaronmk
maps += $(autogenMaps)
279
280 4646 aaronmk
maps: $(maps) _always ;
281 1139 aaronmk
282
all += $(maps)
283
284 1742 aaronmk
##### Maps validation
285
286 4663 aaronmk
# `tail -n +2`: Remove header before running filter_out_ci because filter_out_ci
287
# only removes the header if it matches the vocabulary's header.
288 4601 aaronmk
289 4664 aaronmk
%/unmapped_terms.csv: %/map.csv $(coreMap)
290 4858 aaronmk
	tail -n +2 $<|$(bin)/cols 1|$(bin)/filter_out_ci 0 $(coreMap) >$@
291
	$(bin)/autoremove $@
292 4601 aaronmk
293 4844 aaronmk
%/new_terms.csv: %/map.csv $(vocab) $(dict) %/unmapped_terms.csv
294 4857 aaronmk
	$(newTerms)
295
	$(bin)/autoremove $@
296
newTerms = tail -n +2 $<|$(bin)/filter_out_ci 0 $(vocab)|$(bin)/filter_out_ci 0\
297
$(dict) $(if $(wildcard $(word 4,$+)),|$(bin)/filter_out_ci 0 $(word 4,$+)) >$@
298 4601 aaronmk
299 4600 aaronmk
termsSubdirs := $(tables)
300
301 3764 aaronmk
include $(root)/lib/mappings.Makefile
302 1742 aaronmk
303 1509 aaronmk
##### External dependencies
304
305
$(root)/%: _always
306
	+$(subMake)
307 1628 aaronmk
.PRECIOUS: $(root)/% # let ext. dir's Makefile decide whether to delete on error
308 1509 aaronmk
309 783 aaronmk
##### Mapping
310 368 aaronmk
311 4182 aaronmk
+maps = $(filter %/map.csv %/VegBIEN.csv $(mappings)/%,$(+_))
312 4746 aaronmk
map2db = env in_database=vegbien in_schema=$(datasrc) in_table=$*\
313 4748 aaronmk
out_database=vegbien $(root)/map $(+maps)
314 368 aaronmk
315 783 aaronmk
##### Import to VegBIEN
316 772 aaronmk
317 1853 aaronmk
profileTest = $(if $(profile),$(if $(test),1))
318
profileOnly = -env profile_to=/dev/fd/3 $(map2db) 3>&1 1>&2|\
319
$(bin)/profile_stats /dev/fd/0
320
321 4182 aaronmk
log_ = $*/logs/$(if $(n),n=$(n).,)$(date).log.sql
322 3317 aaronmk
trace = $(log_:.log.sql=.trace)
323 1853 aaronmk
import = -$(if $(profileTest),$(profileOnly),(set -x; "time" env commit=1\
324 1190 aaronmk
$(if $(profile),profile_to=$(trace)) $(map2db)) $(if $(log),\
325 3616 aaronmk
$(if $(n),,&>$(log_)))$(if $(log),$(if $(n), 2>&1|tee -a $(log_))))
326 1088 aaronmk
# don't abort on import errors, which often relate to invalid input data
327 624 aaronmk
328 4252 aaronmk
import: $(tables:%=%/import) _always ;
329 718 aaronmk
330 4252 aaronmk
%/import: %/VegBIEN.csv _always
331 718 aaronmk
	$(import)
332 772 aaronmk
# default:
333 4252 aaronmk
%/import: _always ;
334 718 aaronmk
335 790 aaronmk
##### Log files from import
336
337 4182 aaronmk
logs := $(wildcard */logs/*.log.sql */logs/*.trace)
338 339 aaronmk
339 383 aaronmk
rm_logs: _always
340 339 aaronmk
	$(RM) $(logs)
341
342 783 aaronmk
##### Verification of import
343 264 aaronmk
344 4252 aaronmk
verify: $(tables:%=%/verify) _always ;
345 1194 aaronmk
346 4252 aaronmk
%/verify: verify/%.ref verify/%.out _always
347 1184 aaronmk
	-$(diffVerbose) $(+_)
348 1088 aaronmk
# don't abort on verification errors, which are expected during development
349 1194 aaronmk
# default:
350 4252 aaronmk
%/verify: verify/%.out _always
351 1200 aaronmk
	$(if $(shell test -e $< && echo t),cat $<)
352 1199 aaronmk
# don't run if verify/%.out's default do-nothing action was used
353 1200 aaronmk
# can't use $(wildcard) because it won't recheck file after verify/%.out is run
354 368 aaronmk
355 4401 aaronmk
psqlExport := "time" $(psqlAsBien) --no-align --field-separator=$$'\t'\
356
--pset=footer=off --pset=null=NULL
357
verify = $(if $(reverify),$(psqlExport) --set=datasource="'$(datasrc)'" <$< >$@)
358 514 aaronmk
359 1199 aaronmk
verify/%.out: $(mappings)/verify.%.sql _always
360 1192 aaronmk
	$(verify)
361 1194 aaronmk
# default:
362 1199 aaronmk
verify/%.out: _always ;
363 369 aaronmk
364 1199 aaronmk
all += $(wildcard verify/*.out)
365 1192 aaronmk
366 4402 aaronmk
%.ref: %.ref.sql
367 4409 aaronmk
	($(inDatasrc); cat $<)|$(psqlExport) >$@
368 4402 aaronmk
369 1667 aaronmk
##### Editing import
370
371 4121 aaronmk
rotate: _always
372 1668 aaronmk
	echo "UPDATE party SET organizationname = organizationname||'.$(date)'\
373 1854 aaronmk
WHERE organizationname = '$(datasrc)';"|$(psqlAsBien)
374 1667 aaronmk
375 4121 aaronmk
rm: _always
376 1854 aaronmk
	echo "DELETE FROM party WHERE organizationname = '$(datasrc)';"|\
377
$(psqlAsBien)
378 1667 aaronmk
379 783 aaronmk
##### Testing
380 368 aaronmk
381 4274 aaronmk
testRefOutput = $(subst .by_col,,$(1))
382 1986 aaronmk
testRef = $(testRefOutput).ref
383
hasOwnRef = $(filter $@,$(call testRefOutput,$@))
384
# filter returns non-empty if they are equal
385 630 aaronmk
386 4246 aaronmk
# `rm $@`: Remove outputs of successful tests to reduce clutter
387 4272 aaronmk
# `$(foreach use_staged...)`: Run with use_staged=1
388 897 aaronmk
define runTest
389 776 aaronmk
@echo "Testing $(abspath $@)..."
390 4272 aaronmk
>$@ env test=1 n=$(test_n) $(1) $(foreach use_staged,1,$(map2db))
391 4246 aaronmk
@(set -x; $(diffIgnoreSpace) $(call testRef,$@) $@) 2>&1 && rm $@ || { e=$$?;\
392 780 aaronmk
$(if $(wildcard $(call testRef,$@)),,cat $@;)\
393 777 aaronmk
$(if $(hasOwnRef),\
394 3179 aaronmk
{\
395
read -p $(emph)'Accept new test output? (y/n)'$(endEmph) REPLY;\
396
if test "$$REPLY" = y; then\
397
(set -x; $(MAKE) $@-ok --directory=$(realpath .) --makefile=../input.Makefile);\
398
exit 0;\
399
fi;\
400
};,\
401 777 aaronmk
echo $(emph)"Note: The preceding failed test is compared to another test's\
402
output"$(endEmph);\
403
echo $(emph)"When it fails, this always indicates a bug"$(endEmph);\
404
)\
405 652 aaronmk
exit $$e;}
406 628 aaronmk
endef
407
408 876 aaronmk
tests :=
409
410 4269 aaronmk
# Requires staging tables. To create them, run `make inputs/<datasrc>/install`.
411
# Non-flat-file inputs fall back to mimicking a successful test
412 4182 aaronmk
%/test.xml: %/VegBIEN.csv _always
413 4452 aaronmk
	$(if $(nonXml),$(call runTest,by_col=))
414 4182 aaronmk
tests += %/test.xml
415 627 aaronmk
416 4274 aaronmk
%/test.by_col.xml: %/VegBIEN.csv _always
417 4831 aaronmk
	$(if $(nonXml),$(call runTest,by_col=1))
418 4275 aaronmk
419
# Only run column-based tests if column-based mode enabled, because these tests
420
# are much slower than the row-based tests for small numbers of rows
421
ifneq ($(by_col),)
422 4274 aaronmk
tests += %/test.by_col.xml
423 4275 aaronmk
endif
424 4274 aaronmk
425 876 aaronmk
testOutputs := $(foreach test,$(tests),$(tables:%=$(test)))
426 724 aaronmk
427 1361 aaronmk
.PRECIOUS: $(testOutputs) # save outputs of failed tests so they can be accepted
428
429 876 aaronmk
test: _always $(testOutputs) ;
430
431 4182 aaronmk
all += $(wildcard %/test*.xml)
432 876 aaronmk
433 634 aaronmk
# Accepts a test output: make <test_output_path>-ok
434 626 aaronmk
%-ok: _always
435 4383 aaronmk
	mv $* $(call testRef,$*)
436 502 aaronmk
437 4120 aaronmk
accept-all: _always
438 3579 aaronmk
	+yes|$(selfMake) test
439
440 3133 aaronmk
##### Documentation
441
442 4494 aaronmk
steps = $(selfMake) -s $*/import test=1 by_col=1 verbosity=2 n=100\
443 3385 aaronmk
2>&1|$(bin)/debug2redmine >$@
444 3188 aaronmk
445 4182 aaronmk
%/logs/steps.by_col.log.sql: _always
446 3188 aaronmk
	+$(steps)