16 lines
		
	
	
		
			389 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			389 B
		
	
	
	
		
			Python
		
	
	
#! /usr/bin/env python
 | 
						|
# encoding: utf-8
 | 
						|
 | 
						|
def options(opt):
 | 
						|
    opt.load('nasm')
 | 
						|
    opt.load('compiler_c')
 | 
						|
 | 
						|
def configure(conf):
 | 
						|
    conf.load('nasm')
 | 
						|
    conf.load('compiler_c')
 | 
						|
 | 
						|
def build(bld):
 | 
						|
    bld.program(source='pic-linux.c', target='pic-linux', cflags='-g')
 | 
						|
    bld.program(source='sins.c', target='sins', cflags='-g')
 | 
						|
    bld(features='asm', source='scrap.asm', target='scrap')
 |