mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-25 19:30:04 +01:00
18 lines
291 B
Python
18 lines
291 B
Python
#! /usr/bin/env python
|
|
|
|
def options(ctx):
|
|
ctx.load('compiler_c')
|
|
|
|
def configure(ctx):
|
|
ctx.load('compiler_c')
|
|
|
|
def build(ctx):
|
|
sub = ctx.recurse
|
|
sub('fakelibs')
|
|
sub('objects')
|
|
sub('order')
|
|
sub('transitivity')
|
|
sub('headers')
|
|
#sub('cycle') # this must raise an error during the build
|
|
|