13 lines
160 B
Python
13 lines
160 B
Python
|
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
files = [
|
||
|
'main.cpp',
|
||
|
]
|
||
|
|
||
|
acenv = env.Clone()
|
||
|
acenv.Append(CXXFLAGS = [ '-fPIC' ])
|
||
|
|
||
|
acenv.Program('dsptool', files)
|