28 lines
561 B
Python
28 lines
561 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
"assemble.cpp",
|
|
"disassemble.cpp",
|
|
"gdsp_aram.cpp",
|
|
"gdsp_condition_codes.cpp",
|
|
"gdsp_ext_op.cpp",
|
|
"gdsp_interface.cpp",
|
|
"gdsp_interpreter.cpp",
|
|
"gdsp_memory.cpp",
|
|
"gdsp_registers.cpp",
|
|
"DSPAnalyzer.cpp",
|
|
"DSPInterpreter.cpp",
|
|
"DSPJit.cpp",
|
|
"DSPCodeUtil.cpp",
|
|
"LabelMap.cpp",
|
|
# "DSPHost.cpp",
|
|
"DSPTables.cpp",
|
|
]
|
|
|
|
acenv = env.Clone()
|
|
acenv.Append(CXXFLAGS = [ '-fPIC' ])
|
|
|
|
acenv.StaticLibrary(env['local_libs'] + 'dspcore', files, LIBS = [ 'common'] )
|