added '--noclean' option

This commit is contained in:
Philip Eisenlohr 2011-06-14 14:56:10 +00:00
parent 1877026d86
commit 480021e788
1 changed files with 3 additions and 1 deletions

View File

@ -30,4 +30,6 @@ for arch in architectures:
childFile.close()
os.system('make --directory %s'%wd)
os.system('make --directory %s clean'%wd)
if not '--noclean' in [s.lower() for s in sys.argv]:
os.system('make --directory %s clean'%wd)