summaryrefslogtreecommitdiff
path: root/Cleanup.cmd
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:18:53 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:18:53 +0200
commit32cb97237e7691d31977ab503c6ea4511e8eb3a8 (patch)
tree4e97b53e9f7b74e8cc5d7548507d9e82ae38e36f /Cleanup.cmd
parent4.6 (diff)
downloadFreeFileSync-32cb97237e7691d31977ab503c6ea4511e8eb3a8.tar.gz
FreeFileSync-32cb97237e7691d31977ab503c6ea4511e8eb3a8.tar.bz2
FreeFileSync-32cb97237e7691d31977ab503c6ea4511e8eb3a8.zip
5.0
Diffstat (limited to 'Cleanup.cmd')
-rw-r--r--Cleanup.cmd70
1 files changed, 0 insertions, 70 deletions
diff --git a/Cleanup.cmd b/Cleanup.cmd
deleted file mode 100644
index 40b62e27..00000000
--- a/Cleanup.cmd
+++ /dev/null
@@ -1,70 +0,0 @@
-@if NOT [%1]==[] echo Don't pass a parameter! && pause && exit
-
-@echo off
-
-::clean codeblocks garbage
-del FreeFileSync.layout
-del FreeFileSync.depend
-del FreeFileSync-Linux.layout
-del FreeFileSync-Linux.depend
-del RealtimeSync\RealtimeSync.layout
-del RealtimeSync\RealtimeSync.depend
-del RealtimeSync\Realt-Linux.layout
-del RealtimeSync\Realt-Linux.depend
-
-::clean Visual C++ garbage
-del FreeFileSync.vcxproj.user
-del FreeFileSync.ncb
-del RealtimeSync\RealtimeSync.ncb
-del "FreeFileSync - wxWidgets v2.9.1 Beta.vcxproj.user"
-attrib FreeFileSync.suo -h
-del FreeFileSync.suo
-attrib RealtimeSync\RealtimeSync.suo -h
-del RealtimeSync\RealtimeSync.suo
-del FreeFileSync.sdf
-del RealtimeSync\RealtimeSync.sdf
-del RealtimeSync\RealtimeSync.vcxproj.user
-
-del BUILD\FreeFileSync*.pdb
-del BUILD\FreeFileSync*.ilk
-del BUILD\FreeFileSync*.lib
-del BUILD\FreeFileSync*.exp
-
-del BUILD\RealtimeSync*.pdb
-del BUILD\RealtimeSync*.ilk
-del BUILD\RealtimeSync*.lib
-del BUILD\RealtimeSync*.exp
-
-del BUILD\FreeFileSync.exe
-del BUILD\FreeFileSync_Debug.exe
-del BUILD\FreeFileSync_Win32.exe
-del BUILD\FreeFileSync_x64.exe
-del BUILD\RealtimeSync.exe
-del BUILD\RealtimeSync_Debug.exe
-del BUILD\RealtimeSync_Win32.exe
-del BUILD\RealtimeSync_x64.exe
-del BUILD\gmon.out
-
-del shared\ShadowCopy\ShadowCopy.ncb
-attrib shared\ShadowCopy\ShadowCopy.suo -h
-del shared\ShadowCopy\ShadowCopy.suo
-del shared\ShadowCopy\Shadow_2003.vcproj.*.user
-del shared\ShadowCopy\Shadow_XP.vcproj.*.user
-del shared\ShadowCopy\ShadowTest.vcproj.*.user
-del shared\ShadowCopy\Shadow.pdb
-del shared\ShadowCopy\Shadow.ilk
-del shared\ShadowCopy\Shadow.exp
-del shared\ShadowCopy\Shadow.lib
-del shared\ShadowCopy\ShadowTest.ilk
-del shared\ShadowCopy\ShadowTest.pdb
-
-del shared\IFileOperation\FileOperation_Vista.ncb
-attrib shared\IFileOperation\FileOperation_Vista.suo -h
-del shared\IFileOperation\FileOperation_Vista.suo
-del shared\IFileOperation\FileOperation_Vista.vcproj.*.user
-del shared\IFileOperation\Test.vcproj.*.user
-del shared\IFileOperation\Test.ilk
-
-attrib shared\Taskbar_Seven\Taskbar_Seven.suo -h
-del shared\Taskbar_Seven\Taskbar_Seven.suo
-del shared\Taskbar_Seven\Taskbar_Seven.vcproj.*.user
bgstack15