name change
[metze/wireshark/wip.git] / plugins / ciscosm / Makefile.am
1 # Makefile.am
2 # Automake file for Cisco SS7 Session Management plugin
3 # Copyright 2004, Duncan Sargeant <dunc-ethereal@rcpt.to>
4 #
5 # $Id$
6 #
7 # Wireshark - Network traffic analyzer
8 # By Gerald Combs <gerald@wireshark.org>
9 # Copyright 1998 Gerald Combs
10
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License
13 # as published by the Free Software Foundation; either version 2
14 # of the License, or (at your option) any later version.
15
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24 #
25
26 INCLUDES = -I$(top_srcdir) -I$(includedir)
27
28 include Makefile.common
29
30 plugindir = @plugindir@
31
32 plugin_LTLIBRARIES = ciscosm.la
33 ciscosm_la_SOURCES = \
34         plugin.c \
35         moduleinfo.h \
36         $(DISSECTOR_SRC) \
37         $(DISSECTOR_INCLUDES)
38 ciscosm_la_LDFLAGS = -module -avoid-version
39 ciscosm_la_LIBADD = @PLUGIN_LIBS@
40
41 # Libs must be cleared, or else libtool won't create a shared module.
42 # If your module needs to be linked against any particular libraries,
43 # add them here.
44 LIBS =
45
46 #
47 # Build plugin.c, which contains the plugin version[] string, a
48 # function plugin_register() that calls the register routines for all
49 # protocols, and a function plugin_reg_handoff() that calls the handoff
50 # registration routines for all protocols.
51 #
52 # We do this by scanning sources.  If that turns out to be too slow,
53 # maybe we could just require every .o file to have an register routine
54 # of a given name (packet-aarp.o -> proto_register_aarp, etc.).
55 #
56 # Formatting conventions:  The name of the proto_register_* routines an
57 # proto_reg_handoff_* routines must start in column zero, or must be
58 # preceded only by "void " starting in column zero, and must not be
59 # inside #if.
60 #
61 # DISSECTOR_SRC is assumed to have all the files that need to be scanned.
62 #
63 # For some unknown reason, having a big "for" loop in the Makefile
64 # to scan all the files doesn't work with some "make"s; they seem to
65 # pass only the first few names in the list to the shell, for some
66 # reason.
67 #
68 # Therefore, we have a script to generate the plugin.c file.
69 # The shell script runs slowly, as multiple greps and seds are run
70 # for each input file; this is especially slow on Windows.  Therefore,
71 # if Python is present (as indicated by PYTHON being defined), we run
72 # a faster Python script to do that work instead.
73 #
74 # The first argument is the directory in which the source files live.
75 # The second argument is "plugin", to indicate that we should build
76 # a plugin.c file for a plugin.
77 # All subsequent arguments are the files to scan.
78 #
79 plugin.c: $(DISSECTOR_SRC) $(top_srcdir)/tools/make-dissector-reg \
80     $(top_srcdir)/tools/make-dissector-reg.py
81         @if test -n $(PYTHON); then \
82                 echo Making plugin.c with python ; \
83                 $(PYTHON) $(top_srcdir)/tools/make-dissector-reg.py $(srcdir) \
84                     plugin $(DISSECTOR_SRC) ; \
85         else \
86                 echo Making plugin.c with shell script ; \
87                 $(top_srcdir)/tools/make-dissector-reg $(srcdir) \
88                     $(plugin_src) plugin $(DISSECTOR_SRC) ; \
89         fi
90
91 #
92 # Currently plugin.c can be included in the distribution because
93 # we always build all protocol dissectors. We used to have to check
94 # whether or not to build the snmp dissector. If we again need to
95 # variably build something, making plugin.c non-portable, uncomment
96 # the dist-hook line below.
97 #
98 # Oh, yuk.  We don't want to include "plugin.c" in the distribution, as
99 # its contents depend on the configuration, and therefore we want it
100 # to be built when the first "make" is done; however, Automake insists
101 # on putting *all* source into the distribution.
102 #
103 # We work around this by having a "dist-hook" rule that deletes
104 # "plugin.c", so that "dist" won't pick it up.
105 #
106 #dist-hook:
107 #       @rm -f $(distdir)/plugin.c
108
109 CLEANFILES = \
110         ciscosm \
111         *~
112
113 MAINTAINERCLEANFILES = \
114         Makefile.in
115
116 EXTRA_DIST = \
117         Makefile.common         \
118         Makefile.nmake