19 lines
369 B
Python
19 lines
369 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
devinfo = bld.path.ant_glob ('*.device')
|
|
profiles = bld.path.ant_glob ('*.profile')
|
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'mcp'), devinfo)
|
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'mcp'), profiles)
|
|
|
|
def options(opt):
|
|
pass
|