#! /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')