summaryrefslogtreecommitdiff
path: root/mcp/wscript
blob: e3cc341419146e13daa5bf128bae17e839db7660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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