d220f477ed
Variables by these names are only used from the local wscript and when running "waf configure", which already for other reasons only can run at the top-level. These variables are thus not mandatory and not used.
16 lines
348 B
Python
16 lines
348 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
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
|