22 lines
372 B
Python
22 lines
372 B
Python
import sys
|
|
|
|
|
|
def options(opt):
|
|
opt.load('asm compiler_c')
|
|
|
|
|
|
def configure(conf):
|
|
conf.load('asm compiler_c')
|
|
conf.check_cc(header_name='openssl/sha.h')
|
|
|
|
|
|
def build(bld):
|
|
bld.program(
|
|
source='pic-linux.c',
|
|
target='pic-linux',
|
|
lib=['ssl', 'crypto'])
|
|
|
|
# bld(features='nasm',
|
|
# source='scrap.asm',
|
|
# target='scrap')
|