scrap-is-not-scrap/wscript

17 lines
332 B
Plaintext
Raw Normal View History

2016-04-20 01:45:44 +00:00
#! /usr/bin/env python
# encoding: utf-8
2016-01-08 22:00:51 +00:00
2016-01-08 19:47:59 +00:00
def options(opt):
2016-04-20 01:45:44 +00:00
opt.load('nasm')
opt.load('python')
2016-01-08 22:00:51 +00:00
2016-01-08 19:47:59 +00:00
def configure(conf):
2016-04-20 01:45:44 +00:00
conf.load('nasm')
conf.load('python')
conf.check_python_version((3,5,1))
2016-01-08 19:47:59 +00:00
def build(bld):
2016-04-20 01:45:44 +00:00
bld(features='py', source=('sins.py'))
2016-01-08 23:31:31 +00:00
2016-04-20 01:45:44 +00:00
bld(features='asm', source='scrap.asm', target='scrap')