aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2007-09-06 10:14:49 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2007-09-06 10:14:49 +0000
commit0b04fe922b84512c15269f1dfa11a7ae33242810 (patch)
tree1c84855c2f2d89e1aeecfc461d7523a0e7564c62
parentc4c6de35dfb7b9e9733cd82a59a4f64b11a1035a (diff)
Build WiMAX ASN Control Plane dissector plugin
svn path=/trunk/; revision=22801
-rw-r--r--AUTHORS4
-rw-r--r--configure.in1
-rw-r--r--plugins/Makefile.am3
-rw-r--r--plugins/Makefile.nmake18
4 files changed, 24 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 7799f2c086..c20f9c4a7c 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -2664,6 +2664,10 @@ Karen Feng <kfeng [AT] fas.harvard.edu> {
802.1ad and 802.1ah support
}
+Stephen Croll <croll@mobilemetrics.net> {
+ WiMAX ASN Control Plane dissection
+}
+
and by:
Pavel Roskin <proski [AT] gnu.org>
diff --git a/configure.in b/configure.in
index 46c949d916..d7113a443e 100644
--- a/configure.in
+++ b/configure.in
@@ -1558,6 +1558,7 @@ AC_OUTPUT(
plugins/unistim/Makefile
plugins/v5ua/Makefile
plugins/wimax/Makefile
+ plugins/wimaxasncp/Makefile
tools/Makefile
tools/idl2wrs.sh
tools/lemon/Makefile
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 2dfa2d2536..6bce8a4d3f 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -46,7 +46,8 @@ SUBDIRS = \
stats_tree \
unistim \
v5ua \
- wimax
+ wimax \
+ wimaxasncp
plugindir = @plugindir@
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index 9682618d56..385f2decd0 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -32,7 +32,8 @@ all: \
stats_tree \
unistim \
v5ua \
- wimax
+ wimax \
+ wimaxasncp
agentx::
@@ -163,6 +164,11 @@ wimax::
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
+wimaxasncp::
+ cd wimaxasncp
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+ cd ..
+
clean:
rm -rf $(VERSION)
cd agentx
@@ -240,6 +246,9 @@ clean:
cd wimax
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
+ cd wimaxasncp
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+ cd ..
if exist Custom.nmake $(MAKE) /$(MAKEFLAGS) -f Custom.nmake clean
distclean: clean
@@ -318,6 +327,9 @@ distclean: clean
cd wimax
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ..
+ cd wimaxasncp
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ..
if exist Custom.nmake $(MAKE) /$(MAKEFLAGS) -f Custom.nmake distclean
maintainer-clean: distclean
@@ -393,6 +405,9 @@ maintainer-clean: distclean
cd wimax
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ..
+ cd wimaxasncp
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
+ cd ..
if exist Custom.nmake $(MAKE) /$(MAKEFLAGS) -f Custom.nmake maintainer-clean
################################################################################
@@ -429,6 +444,7 @@ install-plugins:
xcopy unistim\*.dll $(VERSION) /d
xcopy v5ua\*.dll $(VERSION) /d
xcopy wimax\*.dll $(VERSION) /d
+ xcopy wimaxasncp\*.dll $(VERSION) /d
if exist Custom.nmake $(MAKE) /$(MAKEFLAGS) -f Custom.nmake install-plugins
!ENDIF