#!/usr/bin/env python
# encoding: utf8

def build(bld):
    obj = bld.new_task_gen(
        target = 'clangRewrite',
        features = 'cxx cstaticlib',
        source = [
            'DeltaTree.cpp',
            'HTMLRewrite.cpp',
            'Rewriter.cpp',
            'RewriteRope.cpp'
            ],
        includes = ['.', '../../include'],
        install_path = '${PREFIX}/lib')
