aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-26 02:16:16 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-26 02:16:16 +0000
commit601356c8bd0d17e97527ce241439b994f402e9a1 (patch)
tree6ff0ac42f580d32a6dcf5d62e3aa6d320669b844 /Makefile.nmake
parentdc0419a8501297f761b0f4d08a586171d0965f3f (diff)
From Laurent Rabret: replace "lib" with "link /lib"; "lib" is just a
wrapper around "link /lib", and not all Microsoft C compiler distributions provide "lib". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11242 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'Makefile.nmake')
-rw-r--r--Makefile.nmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index 5f1226d5bc..ca63f8a7e7 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
-# $Id: Makefile.nmake,v 1.424 2004/06/21 17:27:35 ulfl Exp $
+# $Id: Makefile.nmake,v 1.425 2004/06/26 02:16:15 guy Exp $
include config.nmake
include <win32.mak>
@@ -196,7 +196,7 @@ randpkt.exe : $(randpkt_OBJECTS) $(EXTRA_OBJECTS)
<<
dissectors.lib: config.h $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) $(EXTRA_OBJECTS)
- lib /out:dissectors.lib $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) $(EXTRA_OBJECTS)
+ link /lib /out:dissectors.lib $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) $(EXTRA_OBJECTS)
config.h : config.h.win32 config.nmake
sed -e s/@VERSION@/$(VERSION)/ \