# -*- mode: python -*- 

# dice.motors module
# Authors: L. Le Guillou

APPNAME  = 'dice.motors'
VERSION  = '0.1'
top   = '.'
out   = 'build'

description = "DICE - MC motors"
requirements = []


def options(opt):
    opt.load('compiler_cc')
    opt.load('python') 
    
def configure(conf):
    conf.load('compiler_cc')
    conf.load('python')
    conf.check_python_headers()
    # conf.env['CCFLAGS'] = ['-fPIC', '-DPIC']
    
def build(bld):    
    bld.recurse(['py'])
    


