import Options import platform def set_options(opt): pass def configure(conf): conf.env.append_value('CCFLAGS', ['-DHAVE_CONFIG_H=1', '-D_GNU_SOURCE']) def build(bld): cares = bld.new_task_gen("cc") cares.source = "eio.c" cares.target = 'eio' cares.name = 'eio' cares.includes = '. ./' + bld.env['DEST_OS'] cares.install_path = None if bld.env["USE_DEBUG"]: cares.clone("debug");