Move /asn1 to /epan/dissectors
[metze/wireshark/wip.git] / epan / dissectors / asn1 / idmp / Makefile.common
1 # Wireshark - Network traffic analyzer
2 # By Gerald Combs <gerald@wireshark.org>
3 # Copyright 1998 Gerald Combs
4 #
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19
20 PROTOCOL_NAME=idmp
21
22 EXPORT_FILES = \
23         $(PROTOCOL_NAME)-exp.cnf
24
25 EXT_ASN_FILE_LIST =
26
27 ASN_FILE_LIST = \
28         IDMProtocolSpecification.asn \
29         CommonProtocolSpecification.asn
30
31 # The packet-$(PROTOCOL_NAME)-template.h and $(PROTOCOL_NAME).asn
32 # files do not exist for all protocols: Please add/remove as required.
33 EXTRA_DIST = \
34         $(EXTRA_DIST_COMMON) \
35         $(ASN_FILE_LIST) \
36         packet-$(PROTOCOL_NAME)-template.c \
37         packet-$(PROTOCOL_NAME)-template.h \
38         $(PROTOCOL_NAME).cnf
39
40 SRC_FILES = \
41         $(EXTRA_DIST) \
42         $(EXT_ASN_FILE_LIST)
43
44 A2W_FLAGS= -b -L
45
46 EXTRA_CNF= \
47         $(builddir)/../x509af/x509af-exp.cnf \
48         $(builddir)/../x509ce/x509ce-exp.cnf
49
50 $(builddir)/../x509af/x509af-exp.cnf:
51         (cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))
52
53 $(builddir)/../x509ce/x509ce-exp.cnf:
54         (cd $(builddir)/../x509ce && $(MAKE_CNF_EXPORT))
55