From d08f65770aaf40a76117444dc50e151c4b337984 Mon Sep 17 00:00:00 2001 From: Michael Mann Date: Fri, 26 Feb 2016 15:24:01 -0500 Subject: Fix nmake build for extcap apps. Change-Id: I09c4ae9a6b05f82b0fdc2271559d715148611e18 Reviewed-on: https://code.wireshark.org/review/14177 Reviewed-by: Michael Mann --- extcap/Makefile.nmake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'extcap') diff --git a/extcap/Makefile.nmake b/extcap/Makefile.nmake index 511b139b71..422ecd46be 100644 --- a/extcap/Makefile.nmake +++ b/extcap/Makefile.nmake @@ -69,19 +69,19 @@ EXECUTABLES += sshdump.exe all: $(EXECUTABLES) -androiddump.exe : $(LIBS_CHECK) ..\config.h androiddump.obj $(anddroiddump_WSLIBS) +androiddump.exe : $(LIBS_CHECK) ..\config.h androiddump.obj extcap-base.obj $(anddroiddump_WSLIBS) @echo Linking $@ $(LINK) @<< - /OUT:androiddump.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:WINDOWS androiddump.obj $(androiddump_LIBS) + /OUT:androiddump.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:WINDOWS androiddump.obj extcap-base.obj $(androiddump_LIBS) << !IFDEF MANIFEST_INFO_REQUIRED mt.exe -nologo -manifest "androiddump.exe.manifest" -outputresource:androiddump.exe;1 !ENDIF -randpktdump.exe : $(LIBS_CHECK) ..\config.h randpktdump.obj $(randpktdump_WSLIBS) +randpktdump.exe : $(LIBS_CHECK) ..\config.h randpktdump.obj extcap-base.obj $(randpktdump_WSLIBS) @echo Linking $@ $(LINK) @<< - /OUT:randpktdump.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:WINDOWS randpktdump.obj $(randpktdump_LIBS) + /OUT:randpktdump.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:WINDOWS randpktdump.obj extcap-base.obj $(randpktdump_LIBS) << !IFDEF MANIFEST_INFO_REQUIRED mt.exe -nologo -manifest "randpktdump.exe.manifest" -outputresource:randpktdump.exe;1 -- cgit v1.2.1