2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-29 13:30:32 +01:00
waf/playground/relocate/c/wscript
2011-09-10 11:13:51 +02:00

12 lines
235 B
Python

#! /usr/bin/env python
def options(opt):
opt.load('compiler_c')
def configure(conf):
conf.load('relocation compiler_c')
def build(bld):
bld.shlib(source='a.c', target='one')
bld.program(source='main.c', target='two', use='one')