hmm, apparently $^ doesn't work for nmake

svn path=/trunk/; revision=21318
This commit is contained in:
Richard van der Hoff 2007-04-03 15:48:59 +00:00
parent c55799267b
commit 97bf03e456
1 changed files with 3 additions and 3 deletions

View File

@ -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