diff options
author | Thomas Braun <thomas.braun@virtuell-zuhause.de> | 2014-02-08 17:26:53 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-02-12 14:39:08 +0100 |
commit | bcb32e915eb700d058e12b2f3bd8b103a16244d8 (patch) | |
tree | 95e7c339d826f5ce189e7613305ecabfd4238fa2 /lib/Makefile.m32 | |
parent | 0ab97ba0090f2609760c33000181f08757336a48 (diff) | |
download | curl-bcb32e915eb700d058e12b2f3bd8b103a16244d8.tar.gz |
Fix compilation with make mingw32
The source files from lib/vtls where generated in lib instead of lib/vtls.
Verified-by: Thomas Braun <thomas.braun@virtuell-zuhause.de>
Diffstat (limited to 'lib/Makefile.m32')
-rw-r--r-- | lib/Makefile.m32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.m32 b/lib/Makefile.m32 index a401c71f6..afe3982dc 100644 --- a/lib/Makefile.m32 +++ b/lib/Makefile.m32 @@ -285,7 +285,7 @@ $(libcurl_dll_LIBRARY): $(libcurl_a_OBJECTS) $(RESOURCE) $(libcurl_dll_DEPENDENC $(libcurl_a_OBJECTS) $(RESOURCE) $(DLL_LIBS) %.o: %.c $(PROOT)/include/curl/curlbuild.h - $(CC) $(INCLUDES) $(CFLAGS) -c $< + $(CC) $(INCLUDES) $(CFLAGS) -c $< -o $@ %.res: %.rc $(RC) $(RCFLAGS) $< -o $@ |