blob: 9ec6aa03d49152fb9946e12d9900f9e8fc740f7a [file] [log] [blame]
"""macgen_info - Generate informational output"""
def generate(output, module_dict):
for name in module_dict.keys():
print 'Include %-20s\t'%name,
module = module_dict[name]
print module.gettype(), '\t', `module`
return 0