From 7cef5cfbfd34b8d4d856fdba5a92c3fb5bf25848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Fri, 1 May 2015 11:53:01 +0200 Subject: [PATCH] clean Windows dependencies as well --- Makefile | 1 + make.ps1 | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e674ef697d..3f5d97d132 100644 --- a/Makefile +++ b/Makefile @@ -287,6 +287,7 @@ clean: @-$(RM_F) *.exe *.dll ./OpenRA*/*.dll ./OpenRA*/*.mdb *.mdb mods/**/*.dll mods/**/*.mdb *.resources @-$(RM_RF) ./*/bin ./*/obj @-$(RM_F) ./thirdparty/*.dll + @-$(RM_RF) ./thirdparty/windows distclean: clean diff --git a/make.ps1 b/make.ps1 index 41f4c6b7c0..a765ee7f10 100644 --- a/make.ps1 +++ b/make.ps1 @@ -71,8 +71,10 @@ elseif ($command -eq "clean") else { $proc = Start-Process $msBuild $msBuildArguments -NoNewWindow -PassThru -Wait - rm *.dll # delete third party dependencies + rm *.dll rm *.config + rm thirdparty/*.dll + rmdir thirdparty/windows/ rm mods/*/*.dll echo "Clean complete." }