#!/usr/bin/env python


def configure(conf):
	pass


def build(bld):
	bld(
		features = ['c', 'cshlib'],
		includes = ['.', '../..'],
		uselib = bld.env['COMMON_USELIB'],
		target = 'gstimxcommon',
		vnum = '0.9.9',
		source = bld.path.ant_glob('*.c')
	)

