waf

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

wscript (199B)


      1 #! /usr/bin/env python
      2 
      3 def options(opt):
      4 	opt.load('compiler_c')
      5 
      6 def configure(conf):
      7 	conf.load('compiler_c')
      8 	conf.load('unity')
      9 
     10 def build(bld):
     11 	bld.program(source='a.c main.c', target='app')
     12