Sophie

Sophie

distrib > Fedora > 14 > i386 > by-pkgid > 42620103d8ee8a2d972d3103bad0ab73 > files > 262

waf-1.5.19-1.fc14.noarch.rpm

#! /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='.')