15 lines
324 B
Python
15 lines
324 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
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='sins.cpp', target='sins', cflags='-g')
|
|
bld(features='asm', source='scrap.asm', target='scrap')
|