2 # Automake file for IrDA plugin
6 # Wireshark - Network traffic analyzer
7 # By Gerald Combs <gerald@wireshark.org>
8 # Copyright 1998 Gerald Combs
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License
12 # as published by the Free Software Foundation; either version 2
13 # of the License, or (at your option) any later version.
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 include $(top_srcdir)/Makefile.am.inc
27 AM_CPPFLAGS = -I$(top_srcdir)
29 include Makefile.common
31 if HAVE_WARNINGS_AS_ERRORS
35 plugindir = @plugindir@
37 plugin_LTLIBRARIES = irda.la
45 irda_la_LDFLAGS = -module -avoid-version
46 irda_la_LIBADD = @PLUGIN_LIBS@
48 # Libs must be cleared, or else libtool won't create a shared module.
49 # If your module needs to be linked against any particular libraries,
54 # Build plugin.c, which contains the plugin version[] string, a
55 # function plugin_register() that calls the register routines for all
56 # protocols, and a function plugin_reg_handoff() that calls the handoff
57 # registration routines for all protocols.
59 # We do this by scanning sources. If that turns out to be too slow,
60 # maybe we could just require every .o file to have an register routine
61 # of a given name (packet-aarp.o -> proto_register_aarp, etc.).
63 # Formatting conventions: The name of the proto_register_* routines an
64 # proto_reg_handoff_* routines must start in column zero, or must be
65 # preceded only by "void " starting in column zero, and must not be
68 # REGISTER_SRC_FILES is assumed to have all the files that need to be scanned.
70 # For some unknown reason, having a big "for" loop in the Makefile
71 # to scan all the files doesn't work with some "make"s; they seem to
72 # pass only the first few names in the list to the shell, for some
75 # Therefore, we have a script to generate the plugin.c file.
76 # The shell script runs slowly, as multiple greps and seds are run
77 # for each input file; this is especially slow on Windows. Therefore,
78 # if Python is present (as indicated by PYTHON being defined), we run
79 # a faster Python script to do that work instead.
81 # The first argument is the directory in which the source files live.
82 # The second argument is "plugin", to indicate that we should build
83 # a plugin.c file for a plugin.
84 # All subsequent arguments are the files to scan.
86 plugin.c: $(REGISTER_SRC_FILES) Makefile.common $(top_srcdir)/tools/make-dissector-reg \
87 $(top_srcdir)/tools/make-dissector-reg.py
88 @if test -n "$(PYTHON)"; then \
89 echo Making plugin.c with python ; \
90 $(PYTHON) $(top_srcdir)/tools/make-dissector-reg.py $(srcdir) \
91 plugin $(REGISTER_SRC_FILES) ; \
93 echo Making plugin.c with shell script ; \
94 $(top_srcdir)/tools/make-dissector-reg $(srcdir) \
95 $(plugin_src) plugin $(REGISTER_SRC_FILES) ; \
99 # Currently plugin.c can be included in the distribution because
100 # we always build all protocol dissectors. We used to have to check
101 # whether or not to build the snmp dissector. If we again need to
102 # variably build something, making plugin.c non-portable, uncomment
103 # the dist-hook line below.
105 # Oh, yuk. We don't want to include "plugin.c" in the distribution, as
106 # its contents depend on the configuration, and therefore we want it
107 # to be built when the first "make" is done; however, Automake insists
108 # on putting *all* source into the distribution.
110 # We work around this by having a "dist-hook" rule that deletes
111 # "plugin.c", so that "dist" won't pick it up.
114 # @rm -f $(distdir)/plugin.c
121 $(NODIST_SRC_FILES) \
122 $(NODIST_HEADER_FILES)
124 MAINTAINERCLEANFILES = \
126 $(GENERATED_SRC_FILES) \
127 $(GENERATED_HEADER_FILES) \
138 $(PERL) $(top_srcdir)/tools/checkAPIs.pl -g abort -g termoutput -build \
139 $(CLEAN_SRC_FILES) $(CLEAN_HEADER_FILES)