Make 'scons clean' more thorough for Matlab and Python packages
This commit is contained in:
parent
3305698b6a
commit
463c481cb0
1 changed files with 5 additions and 1 deletions
|
|
@ -58,8 +58,12 @@ if 'clean' in COMMAND_LINE_TARGETS:
|
||||||
if name.endswith('.msi'):
|
if name.endswith('.msi'):
|
||||||
removeFile(name)
|
removeFile(name)
|
||||||
for name in os.listdir('interfaces/python/Cantera'):
|
for name in os.listdir('interfaces/python/Cantera'):
|
||||||
if name.startswith('_cantera'):
|
if name.startswith('_cantera') or name.startswith('cantera_shared'):
|
||||||
removeFile('interfaces/python/Cantera/' + name)
|
removeFile('interfaces/python/Cantera/' + name)
|
||||||
|
removeFile('interfaces/matlab/toolbox/cantera_shared.dll')
|
||||||
|
for name in os.listdir('interfaces/matlab/toolbox'):
|
||||||
|
if name.startswith('ctmethods.'):
|
||||||
|
removeFile('interfaces/matlab/toolbox/' + name)
|
||||||
print 'Done removing output files.'
|
print 'Done removing output files.'
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue