waf

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

wscript (279B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 # DC 2008
      4 # Thomas Nagy 2010 (ita)
      5 
      6 top = '.'
      7 out = 'build'
      8 
      9 def options(opt):
     10 	opt.load('fakecc', tooldir='.')
     11 
     12 def configure(conf):
     13 	conf.load('fakecc', tooldir='.')
     14 
     15 def build(bld):
     16 	bld(source='hello_main.a hello.a', target='hello')
     17