blob: 8b4cdd0bbea1f4ac2c7f78866dfd30d085bd8055 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
make distclean
for /r %%B in (*.qm) do del /s /q %%B
for /r %%B in (*.dll) do del /s /q %%B
for /r %%B in (*.a) do del /s /q %%B
for /r %%B in (*.Release) do del /s /q %%B
for /r %%B in (Makefile*) do del /s /q %%B
for /d /r %%B in (.build) do rmdir /s /q %%B
for /d /r %%B in (debug) do rmdir /s /q %%B
for /d /r %%B in (release) do rmdir /s /q %%B
for /r %%B in (*resource.rc) do del /s /q %%B
for /r %%B in (*.Debug) do del /s /q %%B
del /s /q bin\qmmp.exe
rmdir /s /q bin\plugins
|