21 lines
259 B
Python
21 lines
259 B
Python
|
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
files = [
|
||
|
'adler32.c',
|
||
|
'compress.c',
|
||
|
'crc32.c',
|
||
|
'deflate.c',
|
||
|
'gzio.c',
|
||
|
'infback.c',
|
||
|
'inffast.c',
|
||
|
'inflate.c',
|
||
|
'inftrees.c',
|
||
|
'trees.c',
|
||
|
'uncompr.c',
|
||
|
'zutil.c',
|
||
|
]
|
||
|
|
||
|
env.StaticLibrary(env['local_libs'] + "z", files)
|