Project

General

Profile

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
27
	(echo VegCore; $(sed) -n 's/^.*<a name="([a-z][^"]*|[A-Z]+)">.*$$/\1/p')\
28
<$< >$@
29

    
30
#Veg+-VegCore.csv: VegCore.htm
31
#	(echo "Veg+,VegCore"; $(bin)/redmine_synonyms|$(bin)/collapse_multimap)\
32
#<$< >$@
33

    
34
VegCore.tables.csv: VegCore.htm
35
	<$< $(sed) -n 's/^.*<h1 *><a href="#[^>]+>([^?<][^<]*).*$$/\1/p' >$@
36

    
37
VegCore.tables.redmine: VegCore.tables.csv
38
	$(sed) -n 's/^.*$$/[[VegCore#&|&]]/p' <$< >$@
39

    
40
# This tracks VegCore terms that are mapped to VegBIEN but not documented in
41
# VegCore.csv. This file is *not* svn:ignored, so it will show up with a ? when
42
# the user runs `svn st` if there are any unsourced terms.
43
VegCore-VegBIEN.unsourced_terms.csv: VegCore-VegBIEN.csv VegCore.csv
44
	$(bin)/filter_out_ci 0 <$+ >$@
45
	$(bin)/autoremove $@
46

    
47
ifneq ($(filter .%.last_cleanup,$(MAKECMDGOALS)),)
48

    
49
.Veg+-VegCore.csv.last_cleanup: .%.last_cleanup: % $(dict)
50
	$(bin)/in_place $< $(bin)/translate_ci 1 $(dict)
51
	$(bin)/in_place $< $(bin)/canon 1 $(vocab)
52
	$(bin)/in_place $< env text=1 $(bin)/repl $(dict) 2
53
	$(bin)/in_place $< $(bin)/sort 2 0
54
	touch $@
55
.PRECIOUS: .Veg+-VegCore.csv.last_cleanup
56

    
57
.VegX-VegCore.csv.last_cleanup: .%.last_cleanup: % $(dict)
58
	$(bin)/in_place $< $(bin)/translate_ci 1 $(dict)
59
	$(bin)/in_place $< $(bin)/sort_map
60
	touch $@
61
# can't canon because this would remove ? prefixes
62
.PRECIOUS: .VegX-VegCore.csv.last_cleanup
63

    
64
.VegCore-VegBIEN.csv.last_cleanup: .%.last_cleanup: % $(dict) $(vocab)
65
	$(bin)/in_place $< $(bin)/translate_ci 0 $(dict)
66
	$(bin)/in_place $< $(bin)/canon 0 $(vocab)
67
	$(bin)/in_place $< $(bin)/sort_map
68
	touch $@
69
	$(bin)/review 1 <$< >for_review/$<
70
	$(MAKE) VegCore-VegBIEN.unsourced_terms.csv
71
.PRECIOUS: .VegCore-VegBIEN.csv.last_cleanup
72

    
73
else
74
$(inputCoreMaps): _always
75
	$(MAKE) $(@:%=.%.last_cleanup)
76
.PRECIOUS: $(inputCoreMaps)
77
endif
(5-5/16)