lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | # This file is included several times in a row, once |
2 | # for each element of $(object-suffixes). $(object-suffixes-left) | ||||
3 | # is initialized first to $(object-suffixes) so that with each | ||||
4 | # inclusion, we advance $o to the next suffix. | ||||
5 | |||||
6 | o := $(firstword $(object-suffixes-left)) | ||||
7 | object-suffixes-left := $(filter-out $o,$(object-suffixes-left)) | ||||
8 | |||||
9 | $(o-iterator-doit) |