2008-09-21 19:54:29 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
2008-08-16 21:58:07 +00:00
|
|
|
Import('env')
|
|
|
|
import sys
|
|
|
|
|
2008-09-22 23:36:16 +00:00
|
|
|
if sys.platform == 'darwin':
|
2008-09-29 11:33:39 +00:00
|
|
|
output = '../../../../Binary/mac/Plugins/dsphle.so'
|
2008-09-22 23:36:16 +00:00
|
|
|
else:
|
2008-09-29 11:33:39 +00:00
|
|
|
output = '../../../../Binary/linux/Plugins/dsphle.so'
|
2008-09-22 23:36:16 +00:00
|
|
|
|
2008-08-26 22:28:42 +00:00
|
|
|
files = [
|
2008-09-29 11:33:39 +00:00
|
|
|
'DSPHandler.cpp',
|
|
|
|
'MailHandler.cpp',
|
|
|
|
'main.cpp',
|
|
|
|
'Config.cpp',
|
|
|
|
'Globals.cpp',
|
|
|
|
'PCHW/AOSoundStream.cpp',
|
|
|
|
'PCHW/Mixer.cpp',
|
2008-10-04 17:26:12 +00:00
|
|
|
'Debugger/Debugger.cpp',
|
|
|
|
'Debugger/PBView.cpp',
|
|
|
|
'Logging/Logging.cpp',
|
2008-10-04 22:22:29 +00:00
|
|
|
'Logging/Console.cpp',
|
2008-09-29 11:33:39 +00:00
|
|
|
'UCodes/UCode_AX.cpp',
|
|
|
|
'UCodes/UCode_CARD.cpp',
|
|
|
|
'UCodes/UCode_InitAudioSystem.cpp',
|
|
|
|
'UCodes/UCode_Jac.cpp',
|
|
|
|
'UCodes/UCode_ROM.cpp',
|
|
|
|
'UCodes/UCodes.cpp',
|
|
|
|
'UCodes/UCode_Zelda.cpp',
|
2008-08-26 22:28:42 +00:00
|
|
|
]
|
|
|
|
|
2008-09-16 16:50:09 +00:00
|
|
|
dspenv = env.Clone()
|
2008-08-26 22:28:42 +00:00
|
|
|
dspenv.Append(
|
2008-09-22 23:36:16 +00:00
|
|
|
CXXFLAGS = [ '-fPIC' ],
|
|
|
|
LIBS = [ 'common' ],
|
2008-08-26 22:28:42 +00:00
|
|
|
)
|
2008-10-20 17:32:15 +00:00
|
|
|
if not env['osx64']:
|
|
|
|
dspenv.SharedLibrary(output, files)
|