2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 01:46:15 +01:00
waf/playground/stale_files/wscript
Matt Selsky 28ea6e64e3 Typos
2018-03-06 09:14:40 +01:00

28 lines
498 B
Python

#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2006-2015 (ita)
"""
See waflib/extras/stale.py for more information.
Do not forget to reconfigure the project after changing "configure" below
"""
VERSION='0.0.1'
APPNAME='cc_test'
top = '.'
def options(opt):
opt.load('compiler_c')
def configure(conf):
conf.load('compiler_c stale')
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')