1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
@rem Copyright (c) MediaArea.net SARL. All Rights Reserved.
@rem
@rem Use of this source code is governed by a BSD-style license that can
@rem be found in the License.html file in the root of the source tree.
@rem
@rem echo off
@rem --- General ---
cd ..
del *.~* *.obj *.o *.tds *.dcu *.ddp *.opt *.ncb *.suo *.ilk *.idb *.pdb *.pch *.plg *.aps *.user *.win *.layout *.local *.depend *.identcache *.tgs *.tgw *.sdf /Q /S
del *.~* *.obj *.o *.tds *.dcu *.ddp *.opt *.ncb *.suo *.ilk *.idb *.pdb *.pch *.plg *.aps *.user *.win *.layout *.local *.depend *.identcache *.tgs *.tgw *.sdf /AH /Q /S
del *.ogg *.ogm *.avi *.mkv /Q /S
del *.ogg *.ogm *.avi *.mkv /AH /Q /S
cd Release
@rem --- In Project files ---
cd ..\Project
del *.exe *.dll *.a *.lib *.exp *.class *.zip *.7z /Q /S
del *.exe *.dll *.a *.lib *.exp *.class *.zip *.7z /AH /Q /S
cd ..\Release
@rem --- MS Visual Studio specific ---
cd ..\Project
rmdir MSVC\CLI\Release /Q /S
rmdir MSVC\CLI\Release_Ansi /Q /S
rmdir MSVC\ShellExtension\Release /Q /S
cd ..\Release
@rem Borland Developper Studio specific ---
cd ..\Source
rmdir CLI\__history /Q /S
rmdir Common\__history /Q /S
rmdir GUI\__history /Q /S
rmdir GUI\VCL\__history /Q /S
rmdir GUI\WxWidgets\__history /Q /S
rmdir Install\__history /Q /S
rmdir PreRelease\__history /Q /S
rmdir PreRelease\VCL\__history /Q /S
rmdir PreRelease\WxWidgets\__history /Q /S
cd ..\Release
cd ..\Project
rmdir BCB\__history /Q /S
rmdir BCB\CLI\__history /Q /S
rmdir BCB\CLI\Debug_Build /Q /S
rmdir BCB\CLI\Release_Build /Q /S
rmdir BCB\GUI\__history /Q /S
rmdir BCB\GUI\Debug_Build /Q /S
rmdir BCB\GUI\Release_Build /Q /S
rmdir BCB\WxWidgets\__history /Q /S
rmdir BCB\WxWidgets\Debug_Build /Q /S
rmdir BCB\WxWidgets\Release_Build /Q /S
rmdir BCB\PreRelease\__history /Q /S
rmdir BCB\PreRelease\Debug_Build /Q /S
rmdir BCB\PreRelease\Release_Build /Q /S
rmdir MSVC2005\CLI\Win32 /Q /S
rmdir MSVC2005\CLI\x64 /Q /S
rmdir MSVC2005\GUI\Win32 /Q /S
rmdir MSVC2005\GUI\x64 /Q /S
rmdir MSVC2005\MediaConch_Qt\Win32 /Q /S
rmdir MSVC2005\MediaConch_Qt\x64 /Q /S
rmdir MSVC2005\MediaConch_Qt\_Automated /Q /S
rmdir MSVC2005\ipch /Q /S
rmdir MSVC2008\CLI\Win32 /Q /S
rmdir MSVC2008\CLI\x64 /Q /S
rmdir MSVC2008\GUI\Win32 /Q /S
rmdir MSVC2008\GUI\x64 /Q /S
rmdir MSVC2008\MediaConch_Qt\Win32 /Q /S
rmdir MSVC2008\MediaConch_Qt\x64 /Q /S
rmdir MSVC2008\MediaConch_Qt\_Automated /Q /S
rmdir MSVC2008\ipch /Q /S
rmdir MSVC2010\CLI\Win32 /Q /S
rmdir MSVC2010\CLI\x64 /Q /S
rmdir MSVC2010\GUI\Win32 /Q /S
rmdir MSVC2010\GUI\x64 /Q /S
rmdir MSVC2010\MediaConch_Qt\Win32 /Q /S
rmdir MSVC2010\MediaConch_Qt\x64 /Q /S
rmdir MSVC2010\MediaConch_Qt\_Automated /Q /S
rmdir MSVC2010\ipch /Q /S
rmdir MSVC2012\CLI\Win32 /Q /S
rmdir MSVC2012\CLI\x64 /Q /S
rmdir MSVC2012\GUI\Win32 /Q /S
rmdir MSVC2012\GUI\x64 /Q /S
rmdir MSVC2012\MediaConch_Qt\Win32 /Q /S
rmdir MSVC2012\MediaConch_Qt\x64 /Q /S
rmdir MSVC2012\MediaConch_Qt\_Automated /Q /S
rmdir MSVC2012\ipch /Q /S
cd ..\Release
@rem Code::Blocks specific ---
cd ..\Project
rmdir CodeBlocks\CLI\.objs /Q /S
rmdir CodeBlocks\GUI\.objs /Q /S
rmdir CodeBlocks\PreRelease\.objs /Q /S
cd ..\Release
@rem GCC specific ---
cd ..\Project
rmdir GCC\CLI\.deps /Q /S
rmdir GCC\CLI\.objs /Q /S
rmdir GCC\CLI_WithoutLib\.deps /Q /S
rmdir GCC\CLI_WithoutLib\.objs /Q /S
rmdir GCC\GUI\.deps /Q /S
rmdir GCC\GUI\.objs /Q /S
cd ..\Release
@rem --- Release specific ---
del *.zip *.gz *.bz2 *.lib *.dll *.exp *.a *.so *.7z /Q /S
del MediaConch*.* Debug*.* /Q /S
rmdir BCB\GUI\Plugins /Q /S
|