File: CleanUp.bat

package info (click to toggle)
libzen 0.4.41-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,496 kB
  • sloc: cpp: 10,502; ansic: 3,590; sh: 274; makefile: 97
file content (25 lines) | stat: -rw-r--r-- 599 bytes parent folder | download | duplicates (18)
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
@echo off

rem MS Visual Studio specific ---
if exist *.opensdf del *.opensdf
if exist *.sdf     del *.sdf

pushd Example
if exist Debug   rmdir Debug /Q /S
if exist Release rmdir Release /Q /S
if exist Win32   rmdir Win32 /Q /S
if exist x64     rmdir x64 /Q /S
if exist *.ncb   del *.ncb
if exist *.user  del *.user
if exist *.suo   del *.suo /AH
popd

pushd Library
if exist Debug   rmdir Debug /Q /S
if exist Release rmdir Release /Q /S
if exist Win32   rmdir Win32 /Q /S
if exist x64     rmdir x64 /Q /S
if exist *.ncb   del *.ncb
if exist *.user  del *.user
if exist *.suo   del *.suo /AH
popd