You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
waf_old/playground/fully_sequential_build/wscript

26 lines
415 B
Python

#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2011 (ita)
"""
perform builds in a step-by-step fashion
"""
VERSION='0.0.1'
APPNAME='fsb'
top = '.'
def options(opt):
opt.load('fsb')
opt.load('compiler_c')
def configure(conf):
conf.load('compiler_c')
def build(bld):
bld.program(source='main.c', target='app')
bld.program(source='main.c', target='app2')
bld(rule='echo hello', source='wscript')