wscript_build (306B)
1 #! /usr/bin/env python 2 3 bld( 4 features = 'c cshlib', 5 source = 'test_shlib.c', 6 vnum = '1.2.3', 7 defs = 'foo.def', 8 target = 'my_shared_lib') 9 10 bld( 11 features = 'c cprogram', 12 source = 'main.c', 13 target = 'test_shared_link', 14 use = 'my_shared_lib') 15