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

def build(bld):
	bld.program(
		target='chello',
		source=bld.path.ant_glob('src/*.c'),
		includes=['./include'],
		defines=['HELLO_VERSION="1.2.3"'],
		use=['m']
	)

