diff options
author | Evan Martin <martine@danga.com> | 2012-08-01 22:30:41 (GMT) |
---|---|---|
committer | Evan Martin <martine@danga.com> | 2012-08-10 18:33:45 (GMT) |
commit | 40ac1f6e58ca6b6c4c49fe582c30390ba4012945 (patch) | |
tree | 114c121daa5402470792fe1f945adec4a22f85d7 /bootstrap.py | |
parent | 49dd59d707c4e79804835c9cb5a49d1516e7eeff (diff) | |
download | Ninja-40ac1f6e58ca6b6c4c49fe582c30390ba4012945.zip Ninja-40ac1f6e58ca6b6c4c49fe582c30390ba4012945.tar.gz Ninja-40ac1f6e58ca6b6c4c49fe582c30390ba4012945.tar.bz2 |
windows bootstrap: clean up object files
Diffstat (limited to 'bootstrap.py')
-rwxr-xr-x | bootstrap.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bootstrap.py b/bootstrap.py index ab03cf8..a5df22a 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -108,4 +108,8 @@ run([sys.executable, 'configure.py'] + conf_args) run(['./' + binary] + verbose) os.unlink(binary) +if sys.platform.startswith('win32'): + for obj in glob.glob('*.obj'): + os.unlink(obj) + print 'Done!' |