mirror of https://gitlab.com/ita1024/waf.git
11 lines
333 B
Plaintext
11 lines
333 B
Plaintext
# This script uses the logic that prevents static libraries from depending on
|
|
# eachother. This means that the only way libC is re-archived is if the source
|
|
# code file diff.c or any of its depenencies change.
|
|
bld.stlib(
|
|
target='C',
|
|
source='diff.c',
|
|
features='skip_stlib_link_deps',
|
|
use='A',
|
|
includes='.',
|
|
export_includes='.')
|