#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2008 (ita)

# test for looking at dependencies with gcc

VERSION='0.0.1'
APPNAME='cc_test'
top = '.'
out = 'build'

def configure(conf):
	conf.check_tool('gcc')
	conf.check_tool('gccdeps')

def build(bld):
	bld(features='cc cprogram', source='main.c foo.c', target='test', includes='.')
