aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-30 04:58:06 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-30 04:58:06 +0000
commitde8e280fcef8d3d5aa55052a83c7dc19de3c6e3c (patch)
tree4620fb35ad13fe6d4db825347883c8f5ad07004e /plugins
parent66dc7094a79413d8100984299653be6f01ae93d5 (diff)
From Martin Mathieson:
wiretap/README.developer - the referenced default seek_read function doesn't exist now wiretap/wtap.c - a "hole" in encap_table was causing the wrong encap value for later types to be looked up (by name) mergecap.c - fix a couple of program name copy+paste errors from editcap.c git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17765 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Makefile.nmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index 7577fb372f..c118fdc943 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -31,6 +31,7 @@ all: \
rtnet \
rudp \
stats_tree \
+ udp_trace \
v5ua
@@ -156,6 +157,11 @@ stats_tree::
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
+udp_trace::
+ cd udp_trace
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+ cd ..
+
v5ua::
cd v5ua
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
@@ -211,6 +217,8 @@ clean:
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+ cd ../udp_trace
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../v5ua
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
@@ -264,6 +272,8 @@ distclean: clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../udp_trace
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../v5ua
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ..
@@ -315,6 +325,8 @@ maintainer-clean: distclean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ../stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
+ cd ../udp_trace
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ../v5ua
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ..
@@ -354,6 +366,7 @@ install-plugins:
xcopy rtnet\*.dll $(VERSION) /d
xcopy rudp\*.dll $(VERSION) /d
xcopy stats_tree\*.dll $(VERSION) /d
+ xcopy udp_trace\*.dll $(VERSION) /d
xcopy v5ua\*.dll $(VERSION) /d
!ENDIF