| 66 | return result |
| 67 | |
| 68 | class UnixPrebuiltLibGenerator (generators.Generator): |
| 69 | def __init__ (self, id, composing, source_types, target_types_and_names, requirements): |
| 70 | generators.Generator.__init__ (self, id, composing, source_types, target_types_and_names, requirements) |
| 71 | |
| 72 | def run (self, project, name, prop_set, sources): |
| 73 | f = prop_set.get ('<file>') |
| 74 | set_library_order_aux (f, sources) |
| 75 | return f + sources |
| 76 | |
| 77 | ### # The derived toolset must specify their own rules and actions. |
| 78 | # FIXME: restore? |