mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-29 05:21:23 +01:00
19 lines
433 B
Plaintext
19 lines
433 B
Plaintext
|
#! /usr/bin/env python
|
||
|
|
||
|
def options(ctx):
|
||
|
ctx.load('compiler_c')
|
||
|
|
||
|
def configure(ctx):
|
||
|
ctx.load('compiler_c')
|
||
|
ctx.load('objcopy')
|
||
|
|
||
|
def build(ctx):
|
||
|
ctx(features = 'c cprogram objcopy',
|
||
|
source = 'main.c',
|
||
|
target = 'app',
|
||
|
# objcopy_bfdname='srec',
|
||
|
# objcopy_target = 'alternative-name',
|
||
|
# objcopy_install_path = '${PREFIX}/some_dir',
|
||
|
# objcopy_flags = '--strip-all'
|
||
|
)
|