Revision 1817
Added by Aaron Marcuse-Kubitza over 12 years ago
input.Makefile | ||
---|---|---|
174 | 174 |
$(bin)/intersect maps/src.$*.csv 0) |
175 | 175 |
|
176 | 176 |
makeFullCsv = $(if $(shell test -e $(word 2,$+) && echo t),\ |
177 |
env ignore=1 $(bin)/union <$+|$(bin)/sort_map >$@,$(CP) $< $@)
|
|
177 |
env ignore=1 $(bin)/union <$+|,<$< )$(bin)/sort_map >$@
|
|
178 | 178 |
# can't use $(wildcard) because it won't recheck file after $(coreSelfMap) runs |
179 | 179 |
|
180 | 180 |
maps/$(via).%.full.csv: maps/$(via).%.csv $(coreSelfMap) |
Also available in: Unified diff
input.Makefile: Maps building: full via maps (maps/$(via).%.full.csv): $(makeFullCsv): Sort all maps so that rows are re-ordered whether or not a core self map exists. This way, if a core self map is created, it will not cause the sort order of the generated via-format XMLs to change. This makes it easier to accept any changes to test outputs that result from adding a core self map.