def configure(ctx): pass def build(bld): sources = bld.path.ant_glob("**/*.cpp") bld.stlib( source = sources, includes = 'include', name = 'initrd', target = 'initrd', use = 'KUTIL', ) # vim: ft=python et