mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-12-03 23:40:13 +01:00
13 lines
226 B
Python
13 lines
226 B
Python
#! /usr/bin/env python
|
|
|
|
def options(opt):
|
|
opt.load('compiler_c')
|
|
|
|
def configure(conf):
|
|
conf.load('compiler_c')
|
|
conf.load('strip', tooldir='.')
|
|
|
|
def build(bld):
|
|
bld.program(features='strip', source='main.c', target='app')
|
|
|