Project

General

Profile

1
##### Vars/functions
2

    
3
bin := ../bin
4

    
5
review_ = $(bin)/review <$(1) >for_review/$(1)
6
review = $(call review_,$@)
7

    
8
coreMaps := DwC1-DwC2.specimens.csv DwC2-VegBIEN.specimens.csv\
9
VegX-VegBIEN.organisms.csv
10

    
11
##### General targets
12

    
13
all: _always $(coreMaps) join_maps ch_root_maps ;
14

    
15
.SUFFIXES:
16

    
17
_always:
18
.PHONY: _always
19

    
20
clean: _always
21
	$(RM) $(all)
22

    
23
all :=
24

    
25
remake: _always clean all ;
26

    
27
##### Core maps cleanup
28

    
29
ifneq ($(filter .%.last_cleanup,$(MAKECMDGOALS)),)
30
.%.last_cleanup: %
31
	$(bin)/in_place $< $(bin)/simplify_xpath
32
	$(bin)/in_place $< $(bin)/sort_map
33
	touch $@
34
	$(call review_,$<)
35
.PRECIOUS: .%.last_cleanup
36
else
37
$(coreMaps): _always
38
	$(MAKE) $(@:%=.%.last_cleanup)
39
endif
40

    
41
##### Maps generated with join/union
42

    
43
joinMaps :=
44

    
45
DwC-VegBIEN.specimens.csv: DwC1-DwC2.specimens.csv DwC2-VegBIEN.specimens.csv
46
	env header_num=1 $(bin)/join_union_sort <$+ >$@
47
joinMaps += DwC-VegBIEN.specimens.csv
48

    
49
join_maps: $(joinMaps) ;
50

    
51
all += $(joinMaps)
52

    
53
##### Maps generated with ch_root
54

    
55
define chRoot
56
$(bin)/ch_root <$< >$@
57
$(review)
58
endef
59

    
60
chRootMaps :=
61

    
62
VegX-VegBIEN.plots.csv: VegX-VegBIEN.organisms.csv
63
	env \
64
left_in_root='/*s/individualOrganismObservation/*ID->/*s/plotObservation' \
65
left_out_root='/*s/plotObservation' \
66
right_in_root='/taxonoccurrence/*_id/locationevent' \
67
right_out_root='/locationevent' \
68
$(chRoot)
69
chRootMaps += VegX-VegBIEN.plots.csv
70

    
71
VegX-VegBIEN.stems.csv: VegX-VegBIEN.organisms.csv
72
	env \
73
left_in_root='/*s/individualOrganismObservation->/*s/individualOrganismObservation[relatedItem[relationshipType=stemParent]/relatedItemID]' \
74
left_out_root='/*s/individualOrganismObservation[relatedItem[relationshipType=stemParent]/relatedItemID]' \
75
right_in_root='/taxonoccurrence/aggregateoccurrence/*_id/plantobservation/stemobservation' \
76
right_out_root='/stemobservation' \
77
$(chRoot)
78
chRootMaps += VegX-VegBIEN.plots.csv
79

    
80
ch_root_maps: $(chRootMaps) ;
81

    
82
all += $(chRootMaps)
(7-7/11)