aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-03-30 04:58:06 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-03-30 04:58:06 +0000
commit901f07af6028383568443bc6a76f9ac7c61ace68 (patch)
tree4620fb35ad13fe6d4db825347883c8f5ad07004e /plugins
parent015b486dc97bde1fc178d4e3cd741e9e5ca52d9d (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 svn path=/trunk/; revision=17765
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