#src/! /usr/bin/env python
#src/ encoding: utf-8
#src/ Sandeep S Srinivasa, 2009
from Logs import error, debug, warn

include_dirs = """
                 #src/lib/libsolcompat/include
                 include
                 """.split()

obj = bld.new_task_gen(
        features = 'cc cstaticlib',
        includes = include_dirs,
        defines = [ '_FILE_OFFSET_BITS=64'],
        install_path = None, #prevents installation of this file
        name = "avl",
        target = 'avl'
        )


obj.find_sources_in_dirs('.') #src/ take the sources in the current folder

