mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-12-13 04:19:35 +01:00
12 lines
307 B
Plaintext
12 lines
307 B
Plaintext
|
#! /usr/bin/env python
|
||
|
|
||
|
def options(ctx):
|
||
|
ctx.load('compiler_c')
|
||
|
|
||
|
def configure(ctx):
|
||
|
ctx.load('compiler_c syms')
|
||
|
|
||
|
def build(ctx):
|
||
|
ctx(features='c cshlib syms', source='a.c b.c', export_symbols_regex='mylib_.*', target='testlib')
|
||
|
ctx(features='c cprogram', source='main.c', target='app', use='testlib')
|