2009-04-12 19:56:59 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
2009-09-18 19:56:49 +00:00
|
|
|
import sys
|
2009-04-12 19:56:59 +00:00
|
|
|
|
|
|
|
dtenv = env.Clone()
|
|
|
|
|
|
|
|
files = [
|
|
|
|
'main.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
libs = [
|
|
|
|
'dspcore',
|
2009-04-12 21:30:22 +00:00
|
|
|
'common',
|
2009-04-12 19:56:59 +00:00
|
|
|
]
|
|
|
|
|
2010-06-02 20:35:12 +00:00
|
|
|
dtenv.Append(LIBS = libs)
|
2009-04-12 19:56:59 +00:00
|
|
|
|
|
|
|
dtenv.Program(dtenv['binary_dir'] + 'dsptool', files)
|