21 lines
		
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
#! /usr/bin/env python3
 | 
						|
# -*- mode: python -*-
 | 
						|
# vi: set ft=python :
 | 
						|
 | 
						|
 | 
						|
def options(opt):
 | 
						|
    opt.load('yasm')
 | 
						|
    opt.load('compiler_cxx')
 | 
						|
 | 
						|
 | 
						|
def configure(conf):
 | 
						|
    conf.load('yasm')
 | 
						|
    conf.load('compiler_cxx')
 | 
						|
 | 
						|
 | 
						|
def build(bld):
 | 
						|
    bld.program(
 | 
						|
        source='generation.cpp',
 | 
						|
        target='generation.elf')
 | 
						|
    bld(features='asm', source='seed.asm', target='seed')
 |