1
|
include ../lib/common.Makefile
|
2
|
|
3
|
|
4
|
##### Vars/functions
|
5
|
|
6
|
# Paths
|
7
|
bin := ../bin
|
8
|
inputCoreMaps := Veg+-VegCore.csv VegCore-VegBIEN.csv VegX-VegCore.csv
|
9
|
vocab := VegCore.csv
|
10
|
dict := Veg+-VegCore.csv
|
11
|
|
12
|
##### General targets
|
13
|
|
14
|
all: _always VegCore.csv VegCore.tables.redmine $(inputCoreMaps) ;
|
15
|
|
16
|
clean: _always
|
17
|
$(RM) $(all)
|
18
|
|
19
|
all :=
|
20
|
|
21
|
##### Core maps
|
22
|
|
23
|
VegCore.htm:
|
24
|
php -r 'fpassthru(fopen("https://projects.nceas.ucsb.edu/nceas/projects/bien/wiki/VegCore", "r"));' >$@
|
25
|
|
26
|
VegCore.csv: VegCore.htm VegCore.tables.csv
|
27
|
<$< $(sed) -n 's/^.*<a name="([^"]+)">.*$$/\1/p'\
|
28
|
|$(bin)/filter_out_ci 0 VegCore.tables.csv >$@
|
29
|
|
30
|
VegCore.tables.csv: VegCore.htm
|
31
|
<$< $(sed) -n 's/^.*<h1 *><a href="#[^>]+>([^<]+).*$$/\1/p'\
|
32
|
|grep -vE '^Namespaces$$' >$@
|
33
|
|
34
|
VegCore.tables.redmine: VegCore.tables.csv
|
35
|
$(sed) -n 's/^.*$$/[[VegCore#&|&]]/p' <$< >$@
|
36
|
|
37
|
# This tracks VegCore terms that are mapped to VegBIEN but not documented in
|
38
|
# VegCore.csv. This file is *not* svn:ignored, so it will show up with a ? when
|
39
|
# the user runs `svn st` if there are any unsourced terms.
|
40
|
VegCore-VegBIEN.unsourced_terms.csv: VegCore-VegBIEN.csv VegCore.csv
|
41
|
$(bin)/filter_out_ci 0 <$+ >$@
|
42
|
$(bin)/autoremove $@
|
43
|
|
44
|
ifneq ($(filter .%.last_cleanup,$(MAKECMDGOALS)),)
|
45
|
|
46
|
.Veg+-VegCore.csv.last_cleanup: .%.last_cleanup: % $(dict)
|
47
|
$(bin)/in_place $< $(bin)/translate 1 $(dict)
|
48
|
$(bin)/in_place $< $(bin)/canon 1 $(vocab)
|
49
|
$(bin)/in_place $< env text=1 $(bin)/repl $(dict) 2
|
50
|
$(bin)/in_place $< $(bin)/sort 2 0
|
51
|
touch $@
|
52
|
.PRECIOUS: .Veg+-VegCore.csv.last_cleanup
|
53
|
|
54
|
.VegX-VegCore.csv.last_cleanup: .%.last_cleanup: % $(dict)
|
55
|
$(bin)/in_place $< $(bin)/translate 1 $(dict)
|
56
|
$(bin)/in_place $< $(bin)/sort_map
|
57
|
touch $@
|
58
|
# can't canon because this would remove ? prefixes
|
59
|
.PRECIOUS: .VegX-VegCore.csv.last_cleanup
|
60
|
|
61
|
.VegCore-VegBIEN.csv.last_cleanup: .%.last_cleanup: % $(dict) $(vocab)
|
62
|
$(bin)/in_place $< $(bin)/translate 0 $(dict)
|
63
|
$(bin)/in_place $< $(bin)/canon 0 $(vocab)
|
64
|
$(bin)/in_place $< $(bin)/sort_map
|
65
|
touch $@
|
66
|
$(bin)/review 1 <$< >for_review/$<
|
67
|
$(MAKE) VegCore-VegBIEN.unsourced_terms.csv
|
68
|
.PRECIOUS: .VegCore-VegBIEN.csv.last_cleanup
|
69
|
|
70
|
else
|
71
|
$(inputCoreMaps): _always
|
72
|
$(MAKE) $(@:%=.%.last_cleanup)
|
73
|
.PRECIOUS: $(inputCoreMaps)
|
74
|
endif
|