Files
jsix/src/libraries/initrd/wscript
Justin C. Miller 591ca7c83c libc WIP
2018-09-24 11:13:18 -07:00

17 lines
265 B
Python

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