diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/makefile.nt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/makefile.nt b/lib-src/makefile.nt index d1bda95ca74..e0076920f67 100644 --- a/lib-src/makefile.nt +++ b/lib-src/makefile.nt | |||
| @@ -72,7 +72,8 @@ MOVEMAILOBJS = $(BLD)\movemail.obj \ | |||
| 72 | $(GETOPTOBJS) | 72 | $(GETOPTOBJS) |
| 73 | 73 | ||
| 74 | $(BLD)\movemail.exe: $(MOVEMAILOBJS) getopt.h | 74 | $(BLD)\movemail.exe: $(MOVEMAILOBJS) getopt.h |
| 75 | $(LINK) -out:$@ $(LINK_FLAGS) -debug:FULL $(MOVEMAILOBJS) $(LIBS) wsock32.lib | 75 | # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib |
| 76 | $(LINK) -out:$@ $(LINK_FLAGS) -debug:FULL $(MOVEMAILOBJS) wsock32.lib $(LIBS) | ||
| 76 | 77 | ||
| 77 | ETAGSOBJ = $(BLD)\etags.obj \ | 78 | ETAGSOBJ = $(BLD)\etags.obj \ |
| 78 | $(BLD)\getopt.obj \ | 79 | $(BLD)\getopt.obj \ |