aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-02-15 02:42:03 -0800
committerGuy Harris <guy@alum.mit.edu>2016-02-15 10:42:28 +0000
commitec863197d9bd36a08087107e377e9fe653e628cc (patch)
tree41f95e2606a332efd488e2f060c7afc28ef82738 /Makefile.nmake
parent65d3d6abb13f8420c4fb57e4663b292ef240a71e (diff)
Fix name of librandpkt_core.
Also, add it to the list of dependencies. Change-Id: I424c0657c87ab97d704b86a3b0722fb7f33b9f49 Reviewed-on: https://code.wireshark.org/review/13949 Reviewed-by: Guy Harris <guy@alum.mit.edu>
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 3926dfe267..a0a50d72cb 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -197,7 +197,7 @@ dftest_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
$(SMI_LIBS)
!ENDIF
-randpkt_LIBS= randpkt_core\randpkt_core.lib \
+randpkt_LIBS= randpkt_core\librandpkt_core.lib \
wiretap\wiretap-$(WTAP_VERSION).lib \
user32.lib \
wsutil\libwsutil.lib \
@@ -419,7 +419,7 @@ dftest.exe : $(dftest_OBJECTS) epan ui
mt.exe -nologo -manifest "dftest.exe.manifest" -outputresource:dftest.exe;1
!ENDIF
-randpkt.exe : $(randpkt_OBJECTS)
+randpkt.exe : $(randpkt_OBJECTS) randpkt_core\librandpkt_core.lib
@echo Linking $@
$(LINK) @<<
/OUT:randpkt.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(randpkt_LIBS) $(randpkt_OBJECTS)