Revision 785
Added by Aaron Marcuse-Kubitza almost 13 years ago
Makefile | ||
---|---|---|
1 |
##### Vars/functions |
|
2 |
|
|
1 | 3 |
coreMaps := DwC-VegBIEN.specimens.csv VegX-VegBIEN.organisms.csv |
2 | 4 |
chRootMaps := VegX-VegBIEN.plots.csv VegX-VegBIEN.stems.csv |
3 | 5 |
joinedMaps := $(filter-out DwC-% VegX-%,$(wildcard *-VegBIEN.*.csv)) |
4 | 6 |
all := $(wildcard for_review/*) $(joinedMaps) $(chRootMaps) |
5 | 7 |
|
8 |
##### General targets |
|
9 |
|
|
6 | 10 |
all: _always $(coreMaps) $(chRootMaps) |
7 | 11 |
@#./join DwC VegBIEN |
8 | 12 |
./join VegX VegBIEN |
... | ... | |
18 | 22 |
|
19 | 23 |
remake: _always clean all ; |
20 | 24 |
|
21 |
##### |
|
25 |
##### Core maps cleanup
|
|
22 | 26 |
|
23 | 27 |
bin := ../bin |
24 | 28 |
|
... | ... | |
30 | 34 |
# Ignore last_cleanup file if it doesn't exist |
31 | 35 |
.%.last_cleanup: |
32 | 36 |
|
33 |
##### |
|
37 |
##### Maps generated with ch_root
|
|
34 | 38 |
|
35 | 39 |
chRoot = $(bin)/ch_root <$< >$@ |
36 | 40 |
|
Also available in: Unified diff
Makefiles: Added documentation labels to each section