mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
17 lines
265 B
Python
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
|