summaryrefslogtreecommitdiff
path: root/winbuild/Makefile.vc
diff options
context:
space:
mode:
authorkdekker <kees.dekker@infor.com>2018-04-04 11:32:19 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-04-06 14:43:33 +0200
commit858502652408d060c80e9626d7cf89183ebe6a94 (patch)
tree52cd37c366df5b51c6414870ec5aac6eed86c55e /winbuild/Makefile.vc
parenta65a75e9b3cf0f2d5572105ab54a6a0b96f1d71d (diff)
downloadcurl-858502652408d060c80e9626d7cf89183ebe6a94.tar.gz
winbuild: make the clean target work without build-type
Due to the check in Makefile.vc and MakefileBuild.vc, no make call can be invoked unless a build-type was specified. However, a clean target only existed when a build type was specified. As a result, the clean target was unreachable. Made clean target unconditional. Closes #2455
Diffstat (limited to 'winbuild/Makefile.vc')
-rw-r--r--winbuild/Makefile.vc3
1 files changed, 3 insertions, 0 deletions
diff --git a/winbuild/Makefile.vc b/winbuild/Makefile.vc
index 46919fc2d..b3d0e4607 100644
--- a/winbuild/Makefile.vc
+++ b/winbuild/Makefile.vc
@@ -270,3 +270,6 @@ $(MODE):
copy_from_lib:
echo copying .c...
FOR %%i IN ($(CURLX_CFILES:/=\)) DO copy %%i ..\src\
+
+clean:
+ $(MAKE) /NOLOGO /F MakefileBuild.vc $@