aboutsummaryrefslogtreecommitdiffstats
path: root/epan/Makefile.nmake
diff options
context:
space:
mode:
authorRichard van der Hoff <richardv@mxtelecom.com>2007-04-03 15:48:59 +0000
committerRichard van der Hoff <richardv@mxtelecom.com>2007-04-03 15:48:59 +0000
commit97bf03e456428469bccc1bc7f6f2e009ae7b8970 (patch)
tree887039bbcb1f6c8987db9e9c4f267244af8f31fe /epan/Makefile.nmake
parentc55799267bf415a80f591faa153e46e52531a529 (diff)
hmm, apparently $^ doesn't work for nmake
svn path=/trunk/; revision=21318
Diffstat (limited to 'epan/Makefile.nmake')
-rw-r--r--epan/Makefile.nmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/Makefile.nmake b/epan/Makefile.nmake
index 0e386d8b60..d13c0d9824 100644
--- a/epan/Makefile.nmake
+++ b/epan/Makefile.nmake
@@ -193,17 +193,17 @@ tvbtest: tvbtest.exe
exntest.exe: exntest.obj except.obj
@echo Linking $@
$(LINK) /OUT:$@ $(LOCAL_LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console \
- $(GLIB_LIBS) $^
+ $(GLIB_LIBS) exntest.obj except.obj
tvbtest.exe: tvbtest.obj tvbuff.obj except.obj strutil.obj emem.obj
@echo Linking $@
$(LINK) /OUT:$@ $(LOCAL_LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console \
- $(GLIB_LIBS) $^
+ $(GLIB_LIBS) tvbtest.obj tvbuff.obj except.obj strutil.obj emem.obj
reassemble_test.exe: reassemble_test.obj libwireshark.dll
@echo Linking $@
$(LINK) /OUT:$@ $(LOCAL_LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console \
- $(GLIB_LIBS) $^
+ $(GLIB_LIBS) reassemble_test.obj libwireshark.dll
# (Windows only) Copy some sources from /trunk to /trunk/epan.
# It is a cleaner to compile these sources seperately with this makefile than