waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

wscript_build (276B)


      1 # This script uses libA to do some internal logic. It uses the default
      2 # behavior so it will be re-archived every time libA changes, even if
      3 # changes in libA are only visible at runtime.
      4 bld.stlib(
      5 	target='B',
      6 	source='sum.c',
      7 	use='A',
      8 	includes='.',
      9 	export_includes='.')