waf

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

README.txt (771B)


      1 Note from the author: using signatures is of course much better
      2 this example is for research purposes only
      3 
      4 
      5 In this example, no configuration will be written or read,
      6 and the build will only use timestamps (no cache files
      7 and no signatures). There is no build directory either.
      8 
      9 To build, use "./ebd"
     10 
     11 
     12 Although the wscript file only declares a build function,
     13 the system performs a configuration internally to check for
     14 a C compiler. The configuration and build context classes are
     15 overridden to hide output messages and to avoid creating cache
     16 files.
     17 
     18 The task class is monkey-patched so that all existing build tasks
     19 will execute without using signatures (only file timestamps are considered).
     20 Implicit dependencies such as headers are still computed automatically.
     21