2009-01-15 08:48:15 +02:00
|
|
|
# -*- python -*-
|
2008-09-21 22:54:29 +03:00
|
|
|
|
2008-07-12 20:40:22 +03:00
|
|
|
Import('env')
|
|
|
|
|
2008-09-23 03:35:07 +03:00
|
|
|
files = [
|
|
|
|
'BannerLoader.cpp',
|
|
|
|
'BannerLoaderGC.cpp',
|
|
|
|
'BannerLoaderWii.cpp',
|
|
|
|
'Blob.cpp',
|
|
|
|
'CompressedBlob.cpp',
|
|
|
|
'DriveBlob.cpp',
|
|
|
|
'FileBlob.cpp',
|
|
|
|
'FileHandlerARC.cpp',
|
|
|
|
'Filesystem.cpp',
|
|
|
|
'FileSystemGCWii.cpp',
|
|
|
|
'VolumeCreator.cpp',
|
|
|
|
'VolumeDirectory.cpp',
|
|
|
|
'VolumeGC.cpp',
|
|
|
|
'VolumeWiiCrypted.cpp',
|
2009-02-28 10:54:23 +02:00
|
|
|
'NANDContentLoader.cpp',
|
2008-09-23 03:35:07 +03:00
|
|
|
'AES/aes_cbc.c',
|
|
|
|
'AES/aes_core.c',
|
|
|
|
]
|
2008-09-21 22:54:29 +03:00
|
|
|
libs = [
|
2008-09-23 03:35:07 +03:00
|
|
|
'common'
|
|
|
|
]
|
|
|
|
env.StaticLibrary('discio', files, LIBS = libs)
|