wscript (223B)
1 #! /usr/bin/env python 2 # encoding: utf-8 3 # Thomas Nagy, 2010 (ita) 4 5 """ 6 See README.txt 7 """ 8 9 def build(bld): 10 bld.program(source='main.c', target='app', use='mylib', cflags=['-O2']) 11 bld.stlib(source='a.c', target='mylib') 12