aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2007-08-20 20:50:29 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2007-08-20 20:50:29 +0000
commitbe1b5f0f7e3eb59a0564fece2749cf2d2df63f9a (patch)
tree11a324fba0744daacccad982f7ac4c7afe2aa86e /plugins/Makefile.nmake
parenta557e40c26c5d98c17230d7093954edf3e91f578 (diff)
Add the UNISTIM plugin to Wireshark.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22558 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake22
1 files changed, 19 insertions, 3 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index 9c9d0279bf..2f4de9b616 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -31,6 +31,7 @@ all: \
rudp \
sbus \
stats_tree \
+ unistim \
v5ua \
wimax
@@ -144,15 +145,20 @@ rudp::
cd ..
sbus::
- cd sbus
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
- cd ..
+ cd sbus
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+ cd ..
stats_tree::
cd stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
+unistim::
+ cd unistim
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+ cd ..
+
v5ua::
cd v5ua
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
@@ -234,6 +240,9 @@ clean:
cd stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
+ cd unistim
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+ cd ..
cd v5ua
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
@@ -312,6 +321,9 @@ distclean: clean
cd stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ..
+ cd unistim
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ..
cd v5ua
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ..
@@ -387,6 +399,9 @@ maintainer-clean: distclean
cd stats_tree
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ..
+ cd unistim
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
+ cd ..
cd v5ua
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ..
@@ -427,6 +442,7 @@ install-plugins:
xcopy rudp\*.dll $(VERSION) /d
xcopy sbus\*.dll $(VERSION) /d
xcopy stats_tree\*.dll $(VERSION) /d
+ xcopy unistim\*.dll $(VERSION) /d
xcopy v5ua\*.dll $(VERSION) /d
xcopy wimax\*.dll $(VERSION) /d
if exist Custom.nmake $(MAKE) /$(MAKEFLAGS) -f Custom.nmake install-plugins