summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/macfreeze/macgenerate.py
blob: 6c60605bdc683693054f4d27513178a0ac25af23 (plain)
1
2
3
4
5
6
7
8
"""macgenerate - Generate the out for macfreeze"""

def generate(program, module_dict):
	for name in module_dict.keys():
		print 'Include %-20s\t'%name,
		module = module_dict[name]
		print module.gettype(), '\t', `module`
	return 0