waf/playground/stale_files/wscript

28 lines
497 B
Plaintext
Raw Normal View History

2011-09-10 11:13:51 +02:00
#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2006-2014 (ita)
2011-09-10 11:13:51 +02:00
"""
See waflib/extras/stale.py for more information.
Do not forget to reconfigure the proect after changing "configure" below
2011-09-10 11:13:51 +02:00
"""
VERSION='0.0.1'
APPNAME='cc_test'
top = '.'
def options(opt):
opt.load('compiler_c')
def configure(conf):
conf.load('compiler_c stale')
2011-09-10 11:13:51 +02:00
def build(bld):
import random
if random.randint(0, 1):
bld(rule='touch ${TGT}', target='foo.h')
else:
bld(rule='touch ${TGT}', target='bar.h')