diff options
author | Jaap Keuter <jaap.keuter@xs4all.nl> | 2007-08-20 20:50:29 +0000 |
---|---|---|
committer | Jaap Keuter <jaap.keuter@xs4all.nl> | 2007-08-20 20:50:29 +0000 |
commit | b65cc92385ee1d75a39e5fe31c5f97a221d46e91 (patch) | |
tree | 11a324fba0744daacccad982f7ac4c7afe2aa86e /plugins/Makefile.nmake | |
parent | 331d267b5075a5cda2b901145d06cd53b01744fa (diff) | |
download | wireshark-b65cc92385ee1d75a39e5fe31c5f97a221d46e91.tar.gz wireshark-b65cc92385ee1d75a39e5fe31c5f97a221d46e91.tar.bz2 wireshark-b65cc92385ee1d75a39e5fe31c5f97a221d46e91.zip |
Add the UNISTIM plugin to Wireshark.
svn path=/trunk/; revision=22558
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r-- | plugins/Makefile.nmake | 22 |
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 |