Project

General

Profile

1
include ../lib/common.Makefile
2

    
3

    
4
##### Vars/functions
5

    
6
# Paths
7
bin := ../bin
8
inputCoreMaps := VegCore.csv Veg+-VegCore.csv VegCore-VegBIEN.csv \
9
VegX-VegCore.csv
10
vocab := VegCore.csv
11
dict := Veg+-VegCore.csv
12

    
13
##### General targets
14

    
15
all: _always $(inputCoreMaps) ;
16

    
17
clean: _always
18
	$(RM) $(all)
19

    
20
all :=
21

    
22
##### Core maps cleanup
23

    
24
# This tracks VegCore terms that are mapped to VegBIEN but not documented in
25
# VegCore.csv. This file is *not* svn:ignored, so it will show up with a ? when
26
# the user runs `svn st` if there are any unsourced terms.
27
VegCore-VegBIEN.unsourced_terms.csv: VegCore-VegBIEN.csv VegCore.csv
28
	$(bin)/filter_out_ci 0 <$+ >$@
29
	$(bin)/autoremove $@
30

    
31
ifneq ($(filter .%.last_cleanup,$(MAKECMDGOALS)),)
32

    
33
.VegCore.csv.last_cleanup: .%.last_cleanup: % $(dict)
34
	$(bin)/in_place $< $(bin)/translate 0 $(dict)
35
	touch $@
36
	$(MAKE) VegCore-VegBIEN.unsourced_terms.csv
37
.PRECIOUS: .VegCore.csv.last_cleanup
38

    
39
.Veg+-VegCore.csv.last_cleanup: .%.last_cleanup: % $(dict)
40
	$(bin)/in_place $< $(bin)/translate 1 $(dict)
41
	$(bin)/in_place $< $(bin)/canon 1 $(vocab)
42
	$(bin)/in_place $< env text=1 $(bin)/repl $(dict) 2
43
	$(bin)/in_place $< $(bin)/sort 2 0
44
	touch $@
45
.PRECIOUS: .Veg+-VegCore.csv.last_cleanup
46

    
47
.VegX-VegCore.csv.last_cleanup: .%.last_cleanup: % $(dict)
48
	$(bin)/in_place $< $(bin)/translate 1 $(dict)
49
	$(bin)/in_place $< $(bin)/sort_map
50
	touch $@
51
# can't canon because this would remove ? prefixes
52
.PRECIOUS: .VegX-VegCore.csv.last_cleanup
53

    
54
.VegCore-VegBIEN.csv.last_cleanup: .%.last_cleanup: % $(dict) $(vocab)
55
	$(bin)/in_place $< $(bin)/translate 0 $(dict)
56
	$(bin)/in_place $< $(bin)/canon 0 $(vocab)
57
	$(bin)/in_place $< $(bin)/sort_map
58
	touch $@
59
	$(bin)/review 1 <$< >for_review/$<
60
	$(MAKE) VegCore-VegBIEN.unsourced_terms.csv
61
.PRECIOUS: .VegCore-VegBIEN.csv.last_cleanup
62

    
63
else
64
$(inputCoreMaps): _always
65
	$(MAKE) $(@:%=.%.last_cleanup)
66
.PRECIOUS: $(inputCoreMaps)
67
endif
(5-5/14)