summaryrefslogtreecommitdiff
path: root/asn1/h460/Makefile.common
diff options
context:
space:
mode:
authorTomas Kukosa <tomas.kukosa@siemens.com>2007-10-18 13:35:57 +0000
committerTomas Kukosa <tomas.kukosa@siemens.com>2007-10-18 13:35:57 +0000
commit44800d2c5a2100e98f518545a82ef63106b0a669 (patch)
treeab278f89b7cf9026c3776fdc91e63b9f91885207 /asn1/h460/Makefile.common
parent74b161b10804943ffd43105ccf1ab2504831e74f (diff)
downloadwireshark-44800d2c5a2100e98f518545a82ef63106b0a669.tar.gz
H.460 new dissector implemented (H.460.2-H.460.22)
H.225 - change RysMessage_vals to h225_Rasmessage_vals - use #.PDU directive for H323-UserInformation and RasMessage instead of implementing it by hands - register RasMessage_PDU as "h225.ras" dissector for calling it from H.460 asn2wrs make PDUs exportable svn path=/trunk/; revision=23226
Diffstat (limited to 'asn1/h460/Makefile.common')
-rw-r--r--asn1/h460/Makefile.common69
1 files changed, 69 insertions, 0 deletions
diff --git a/asn1/h460/Makefile.common b/asn1/h460/Makefile.common
new file mode 100644
index 0000000000..26ecffe427
--- /dev/null
+++ b/asn1/h460/Makefile.common
@@ -0,0 +1,69 @@
+# $Id: Makefile.common 22951 2007-09-25 11:58:35Z kukosa $
+#
+#
+# Wireshark - Network traffic analyzer
+# By Gerald Combs <gerald@wireshark.org>
+# Copyright 1998 Gerald Combs
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+
+PROTOCOL_NAME = h460
+
+DISSECTOR_FILES = \
+ packet-$(PROTOCOL_NAME).c
+
+# NEED_PACKET_PROTO_H =
+
+EXT_ASN_FILE_LIST =
+
+ASN_FILE_LIST = \
+ NUMBER-PORTABILITY.asn \
+ CIRCUIT-STATUS-MAP.asn \
+ CALL-PRIORITY.asn \
+ QOS-MONITORING-REPORT.asn \
+ QOS-MONITORING-EXTENDED-VOIP-REPORT.asn \
+ CALL-PARTY-CATEGORY.asn MLPP.asn \
+ SIGNALLING-CHANNEL-SUSPEND-REDIRECT.asn \
+ SIGNALLING-TRAVERSAL.asn \
+ MEDIA-TRAVERSAL.asn \
+ MESSAGE-BROADCAST.asn
+
+EXTRA_DIST = \
+ $(ASN_FILE_LIST) \
+ packet-$(PROTOCOL_NAME)-template.c \
+ $(PROTOCOL_NAME).cnf
+
+SRC_FILES = \
+ $(EXTRA_DIST) \
+ $(EXT_ASN_FILE_LIST)
+
+# need empty -p <proto> option, default is -p $(PROTOCOL_NAME)
+PROTO_OPT =
+A2W_FLAGS =
+
+EXTRA_CNF = \
+ ../h225/h225-exp.cnf \
+ ../h235/h235-exp.cnf \
+ ../h245/h245-exp.cnf
+
+../h225/h225-exp.cnf:
+ (cd ../h225 && $(MAKE_CNF_EXPORT))
+
+../h235/h235-exp.cnf:
+ (cd ../h235 && $(MAKE_CNF_EXPORT))
+
+../h245/h245-exp.cnf:
+ (cd ../h245 && $(MAKE_CNF_EXPORT))