#!/usr/bin/env python
# -*- encoding: utf-8 -*-

def build(bld):
	bld.objects(
		target='cobjects',
		source=bld.path.ant_glob('src/*.c'),
		includes=['./include'],
	)

