wscript (247B)
1 #! /usr/bin/env python 2 # encoding: utf-8 3 # Thomas Nagy, 2016 (ita) 4 5 def options(opt): 6 opt.load('compiler_c') 7 8 def configure(conf): 9 conf.load('compiler_c') 10 11 def build(bld): 12 bld.load('print_commands') 13 bld.program(source='main.c', target='app') 14