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