17 lines
291 B
Plaintext
17 lines
291 B
Plaintext
|
import sys
|
||
|
|
||
|
def options(opt):
|
||
|
opt.load('asm compiler_c')
|
||
|
|
||
|
def configure(conf):
|
||
|
conf.load('asm compiler_c')
|
||
|
|
||
|
def build(bld):
|
||
|
bld.program(
|
||
|
source='pic-linux.c',
|
||
|
target='pic-linux')
|
||
|
|
||
|
# bld(features='nasm',
|
||
|
# source='scrap.asm',
|
||
|
# target='scrap')
|