17 lines
		
	
	
		
			332 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			332 B
		
	
	
	
		
			Python
		
	
	
#! /usr/bin/env python
 | 
						|
# encoding: utf-8
 | 
						|
 | 
						|
def options(opt):
 | 
						|
    opt.load('nasm')
 | 
						|
    opt.load('python')
 | 
						|
 | 
						|
def configure(conf):
 | 
						|
    conf.load('nasm')
 | 
						|
    conf.load('python')
 | 
						|
    conf.check_python_version((3,5,1))
 | 
						|
 | 
						|
def build(bld):
 | 
						|
    bld(features='py', source=('sins.py'))
 | 
						|
 | 
						|
    bld(features='asm', source='scrap.asm', target='scrap')
 |