scrap-is-not-scrap/wscript

20 lines
357 B
Plaintext
Raw Normal View History

2017-08-31 22:20:30 +00:00
#! /usr/bin/env python3
# -*- mode: python -*-
# vi: set ft=python :
2016-07-12 02:56:22 +00:00
def options(opt):
2019-02-18 04:11:51 +00:00
opt.load('nasm')
opt.load('compiler_cxx')
2016-07-12 02:56:22 +00:00
2019-02-18 04:11:51 +00:00
2016-07-12 02:56:22 +00:00
def configure(conf):
2019-02-18 04:11:51 +00:00
conf.load('nasm')
conf.load('compiler_cxx')
2016-07-12 02:56:22 +00:00
def build(bld):
2019-02-18 04:11:51 +00:00
bld.program(source='generation.cpp', target='generation.elf')
bld(features='asm', source='seed.asm', target='seed')