wscript_build (333B)
1 # This script uses the logic that prevents static libraries from depending on 2 # eachother. This means that the only way libC is re-archived is if the source 3 # code file diff.c or any of its depenencies change. 4 bld.stlib( 5 target='C', 6 source='diff.c', 7 features='skip_stlib_link_deps', 8 use='A', 9 includes='.', 10 export_includes='.')