mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 01:46:15 +01:00
26 lines
415 B
Python
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')
|
|
|