aboutsummaryrefslogtreecommitdiffstats
path: root/epan/Makefile.nmake
diff options
context:
space:
mode:
authorRichard van der Hoff <richardv@mxtelecom.com>2007-04-11 00:22:58 +0000
committerRichard van der Hoff <richardv@mxtelecom.com>2007-04-11 00:22:58 +0000
commitd1f795d28e9d8abf0fe244524bcca5604b0a6103 (patch)
treebe18eb1f8c2d69e54aaf4c2a9a1058228ee1a239 /epan/Makefile.nmake
parent161c7f8b8c9a2524a606c5e9dd1b854819285d55 (diff)
right; this is going badly.
Let's take a different tack: include only the bare minimum, and set up stubs for everything else. svn path=/trunk/; revision=21379
Diffstat (limited to 'epan/Makefile.nmake')
-rw-r--r--epan/Makefile.nmake22
1 files changed, 4 insertions, 18 deletions
diff --git a/epan/Makefile.nmake b/epan/Makefile.nmake
index 1eed9bca17..ea34f346c8 100644
--- a/epan/Makefile.nmake
+++ b/epan/Makefile.nmake
@@ -192,21 +192,6 @@ exntest: exntest.exe
reassemble_test: reassemble_test.exe
tvbtest: tvbtest.exe
-# don't really understand why we need all this extra guff - shouldn't
-# they be in libwireshark.lib, otherwise how does tshark.exe link?
-REASSEMBLE_TEST_LIBS=\
- $(NET_SNMP_LIBS) \
- dissectors\dissectors.lib \
- crypt\airpdcap.lib \
- dfilter\dfilter.lib \
- ftypes\ftypes.lib \
- $(ADNS_LIBS) \
- $(PCRE_LIBS) \
- $(ZLIB_LIBS) \
- $(GLIB_LIBS) \
- $(GNUTLS_LIBS) \
- $(WSLUA_LIB) \
- libwireshark.lib
exntest.exe: exntest.obj except.obj
@@ -219,11 +204,12 @@ tvbtest.exe: tvbtest.obj tvbuff.obj except.obj strutil.obj emem.obj
$(LINK) /OUT:$@ $(LOCAL_LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console \
$(GLIB_LIBS) tvbtest.obj tvbuff.obj except.obj strutil.obj emem.obj
-reassemble_test.exe: reassemble_test.obj $(REASSEMBLE_TEST_LIBS)
+reassemble_test.exe: reassemble_test.obj tvbuff.o except.o strutil.o emem.o \
+ reassemble.o
@echo Linking $@
$(LINK) /OUT:$@ $(LOCAL_LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console \
- wsock32.lib user32.lib \
- $(REASSEMBLE_TEST_LIBS) reassemble_test.obj
+ $(GLIB_LIBS) $(ZLIB_LIBS) reassemble_test.obj tvbuff.o except.o strutil.o emem.o \
+ reassemble.o
# (Windows only) Copy some sources from /trunk to /trunk/epan.
# It is a cleaner to compile these sources seperately with this makefile than