2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-25 19:30:04 +01:00
waf/playground/relocate/c/wscript
2011-12-09 00:54:59 +01:00

12 lines
249 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', includes='a')
bld.program(source='main.c', target='two', use='one')