Revision 7435
Added by Aaron Marcuse-Kubitza almost 12 years ago
mappings/Makefile | ||
---|---|---|
46 | 46 |
ifneq ($(filter .%.last_cleanup,$(MAKECMDGOALS)),) |
47 | 47 |
|
48 | 48 |
.Veg+-VegCore.csv.last_cleanup: .%.last_cleanup: % $(dict) |
49 |
$(bin)/in_place $< $(bin)/translate 1 $(dict) |
|
49 |
$(bin)/in_place $< $(bin)/translate_ci 1 $(dict)
|
|
50 | 50 |
$(bin)/in_place $< $(bin)/canon 1 $(vocab) |
51 | 51 |
$(bin)/in_place $< env text=1 $(bin)/repl $(dict) 2 |
52 | 52 |
$(bin)/in_place $< $(bin)/sort 2 0 |
... | ... | |
54 | 54 |
.PRECIOUS: .Veg+-VegCore.csv.last_cleanup |
55 | 55 |
|
56 | 56 |
.VegX-VegCore.csv.last_cleanup: .%.last_cleanup: % $(dict) |
57 |
$(bin)/in_place $< $(bin)/translate 1 $(dict) |
|
57 |
$(bin)/in_place $< $(bin)/translate_ci 1 $(dict)
|
|
58 | 58 |
$(bin)/in_place $< $(bin)/sort_map |
59 | 59 |
touch $@ |
60 | 60 |
# can't canon because this would remove ? prefixes |
61 | 61 |
.PRECIOUS: .VegX-VegCore.csv.last_cleanup |
62 | 62 |
|
63 | 63 |
.VegCore-VegBIEN.csv.last_cleanup: .%.last_cleanup: % $(dict) $(vocab) |
64 |
$(bin)/in_place $< $(bin)/translate 0 $(dict) |
|
64 |
$(bin)/in_place $< $(bin)/translate_ci 0 $(dict)
|
|
65 | 65 |
$(bin)/in_place $< $(bin)/canon 0 $(vocab) |
66 | 66 |
$(bin)/in_place $< $(bin)/sort_map |
67 | 67 |
touch $@ |
Also available in: Unified diff
mappings/Makefile: Use new translate_ci instead of translate