mezzo/lib/SConscript
2010-01-23 19:37:49 +00:00

17 lines
279 B
Python

Import('env')
expat_files = [
"expat/xmlparse.c",
"expat/xmltok.c",
"expat/xmlrole.c"
]
posh_files = [
"posh/posh.c"
]
env.StaticLibrary("expat", source = expat_files)
env.StaticLibrary("posh", source = posh_files)