Convert h450 to new Makefile structure. Split h450.ros
[metze/wireshark/wip.git] / asn1 / h450 / Makefile.common
1 # $Id$
2 #
3 #
4 # Wireshark - Network traffic analyzer
5 # By Gerald Combs <gerald@wireshark.org>
6 # Copyright 1998 Gerald Combs
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License
10 # as published by the Free Software Foundation; either version 2
11 # of the License, or (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21
22
23 PROTOCOL_NAME=h450
24
25 DISSECTOR_FILES=packet-$(PROTOCOL_NAME).c
26
27 PROTO_OPT =
28
29 # NEED_PACKET_PROTO_H = 1
30
31 EXT_ASN_FILE_LIST = 
32
33 H450_ASN = \
34         H4501-Supplementary-ServiceAPDU-Structure.asn \
35         Addressing-Data-Elements.asn \
36         H225-generic-parameters-definition.asn \
37         Manufacturer-specific-service-extension-definition.asn \
38         H4501-General-Error-List.asn
39
40 H450_OP_ASN = \
41         Call-Transfer-Operations.asn \
42         Call-Diversion-Operations.asn \
43         Call-Hold-Operations.asn \
44         Call-Park-Pickup-Operations.asn \
45         Call-Waiting-Operations.asn \
46         Message-Waiting-Indication-Operations.asn \
47         Name-Operations.asn \
48         Call-Completion-Operations.asn \
49         Call-Offer-Operations.asn \
50         Call-Intrusion-Operations.asn \
51         Common-Information-Operations.asn
52
53 ASN_FILE_LIST = $(H450_ASN) $(H450_OP_ASN)
54
55 # The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
56 # files do not exist # for all protocols: Please add/remove as required.
57 EXTRA_DIST = \
58         $(ASN_FILE_LIST) \
59         packet-$(PROTOCOL_NAME)-template.c \
60         $(PROTOCOL_NAME).cnf
61
62 SRC_FILES = \
63         $(EXTRA_DIST) \
64         $(EXT_ASN_FILE_LIST)
65
66 A2W_FLAGS= 
67
68 EXTRA_CNF=../h225/h225-exp.cnf \
69         ../h450-ros/h450-ros-exp.cnf
70
71 ../h225/h225-exp.cnf:
72         (cd ../h225 && $(MAKE) $(MAKEFLAGS))
73
74 ../h450-ros/h450-ros-exp.cnf:
75         (cd ../h450-ros && $(MAKE) $(MAKEFLAGS))
76