summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2016-02-26 15:24:01 -0500
committerMichael Mann <mmann78@netscape.net>2016-02-26 22:45:40 +0000
commitd08f65770aaf40a76117444dc50e151c4b337984 (patch)
treedb4b2caec77102d695188b2d4aca67e1329aed23
parentd544ecd0ec849202a17c7d6d9d92948a8f59c596 (diff)
downloadwireshark-d08f65770aaf40a76117444dc50e151c4b337984.tar.gz
Fix nmake build for extcap apps.
Change-Id: I09c4ae9a6b05f82b0fdc2271559d715148611e18 Reviewed-on: https://code.wireshark.org/review/14177 Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--extcap/Makefile.nmake8
1 files changed, 4 insertions, 4 deletions
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