mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-25 19:30:04 +01:00
14 lines
258 B
Python
14 lines
258 B
Python
#! /usr/bin/env python
|
|
|
|
bld(
|
|
features = 'c cstlib',
|
|
source = 'test_staticlib.c',
|
|
target = 'my_static_lib')
|
|
|
|
bld(
|
|
features = 'c cprogram',
|
|
source = 'main.c',
|
|
target = 'test_static_link',
|
|
use = 'my_static_lib')
|
|
|