diff options
author | Paweł Chmielowski <pchmielowski@process-one.net> | 2012-04-06 16:31:17 +0200 |
---|---|---|
committer | Paweł Chmielowski <pchmielowski@process-one.net> | 2012-04-06 16:31:17 +0200 |
commit | 82468bff00f01ca6e65273fd95251d06902f3de1 (patch) | |
tree | 17968c7f488a2177137ade2b5dc157e41825371b /src/tls | |
parent | Parse correctly https request split into multiple packets (diff) |
Fix makefile rules for building dll-s in Makefile.win32 files
Diffstat (limited to 'src/tls')
-rw-r--r-- | src/tls/Makefile.win32 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tls/Makefile.win32 b/src/tls/Makefile.win32 index b982791e2..f5a3dba05 100644 --- a/src/tls/Makefile.win32 +++ b/src/tls/Makefile.win32 @@ -31,8 +31,8 @@ LD=link.exe LD_FLAGS=-release -nologo -incremental:no -dll "$(EI_DIR)\lib\ei_md.lib" "$(EI_DIR)\lib\erl_interface_md.lib" "$(OPENSSL_DIR)\lib\VC\ssleay32MD.lib" "$(OPENSSL_DIR)\lib\VC\libeay32MD.lib" MSVCRT.LIB kernel32.lib advapi32.lib gdi32.lib user32.lib comctl32.lib comdlg32.lib shell32.lib $(DLL) : $(OBJECT) - $(LD) $(LD_FLAGS) -out:$(DLL) $(OBJECT) + $(LD) $(LD_FLAGS) -out:$@ $< $(OBJECT) : $(SOURCE) - $(CC) $(CC_FLAGS) -c -Fo$(OBJECT) $(SOURCE) + $(CC) $(CC_FLAGS) -c -Fo$@ $< |