aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/epan
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/epan')
-rw-r--r--plugins/epan/Makefile.am.inc43
-rw-r--r--plugins/epan/ethercat/Makefile.am77
-rw-r--r--plugins/epan/gryphon/Makefile.am66
-rw-r--r--plugins/epan/irda/Makefile.am74
-rw-r--r--plugins/epan/mate/Makefile.am129
-rw-r--r--plugins/epan/opcua/Makefile.am91
-rw-r--r--plugins/epan/pluginifdemo/Makefile.am66
-rw-r--r--plugins/epan/profinet/Makefile.am76
-rw-r--r--plugins/epan/stats_tree/Makefile.am55
-rw-r--r--plugins/epan/transum/Makefile.am71
-rw-r--r--plugins/epan/unistim/Makefile.am75
-rw-r--r--plugins/epan/wimax/Makefile.am116
-rw-r--r--plugins/epan/wimaxasncp/Makefile.am100
-rw-r--r--plugins/epan/wimaxmacphy/Makefile.am66
14 files changed, 0 insertions, 1105 deletions
diff --git a/plugins/epan/Makefile.am.inc b/plugins/epan/Makefile.am.inc
deleted file mode 100644
index 4d3f145225..0000000000
--- a/plugins/epan/Makefile.am.inc
+++ /dev/null
@@ -1,43 +0,0 @@
-# Makefile.am.inc
-# Include file with common automake definitions for dissector plugins
-#
-# Wireshark - Network traffic analyzer
-# By Gerald Combs <gerald@wireshark.org>
-# Copyright 1998 Gerald Combs
-#
-# SPDX-License-Identifier: GPL-2.0-or-later
-#
-
-include $(top_srcdir)/plugins/Makefile.am.inc
-
-#
-# Build plugin.c, which contains the plugin_version[] and plugin_release[]
-# string, and a function plugin_register() that calls the register routines
-# for all protocols.
-#
-# We do this by scanning sources. If that turns out to be too slow,
-# maybe we could just require every .o file to have an register routine
-# of a given name (packet-aarp.o -> proto_register_aarp, etc.).
-#
-# Formatting conventions: The name of the proto_register_* routines and
-# proto_reg_handoff_* routines must start in column zero, or must be
-# preceded only by "void " starting in column zero, and must not be
-# inside #if.
-#
-# REGISTER_SRC_FILES is assumed to have all the files that need to be scanned.
-#
-# For some unknown reason, having a big "for" loop in the Makefile
-# to scan all the files doesn't work with some "make"s; they seem to
-# pass only the first few names in the list to the shell, for some
-# reason.
-#
-# Therefore, we use a script to generate the register.c file.
-# The first argument is the directory in which the source files live.
-# The second argument is "plugin", to indicate that we should build
-# a plugin.c file for a dissector plugin.
-# All subsequent arguments are the files to scan.
-#
-plugin.c: $(REGISTER_SRC_FILES) $(top_srcdir)/tools/make-plugin-reg.py
- @echo Making plugin.c
- @$(PYTHON) $(top_srcdir)/tools/make-plugin-reg.py $(srcdir) \
- plugin $(REGISTER_SRC_FILES)
diff --git a/plugins/epan/ethercat/Makefile.am b/plugins/epan/ethercat/Makefile.am
deleted file mode 100644
index 5a06af9ef9..0000000000
--- a/plugins/epan/ethercat/Makefile.am
+++ /dev/null
@@ -1,77 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = ethercat
-
-PLUGIN_VERSION = 0.1.1
-
-BUILT_SOURCES = \
- plugin.c
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- packet-ams.c \
- packet-ecatmb.c \
- packet-esl.c \
- packet-ethercat-datagram.c \
- packet-ethercat-frame.c \
- packet-ioraw.c \
- packet-nv.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES)
-
-# Headers.
-CLEAN_HEADER_FILES = \
- packet-ams.h \
- packet-ecatmb.h \
- packet-ethercat-datagram.h \
- packet-ethercat-frame.h \
- packet-ioraw.h \
- packet-nv.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = ethercat.la
-
-ethercat_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_ethercat_la_SOURCES = \
- plugin.c
-
-ethercat_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-ethercat_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-ethercat_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- plugin.c
-
-EXTRA_DIST = \
- CMakeLists.txt
diff --git a/plugins/epan/gryphon/Makefile.am b/plugins/epan/gryphon/Makefile.am
deleted file mode 100644
index bbf91ad263..0000000000
--- a/plugins/epan/gryphon/Makefile.am
+++ /dev/null
@@ -1,66 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = gryphon
-
-PLUGIN_VERSION = 1.1.0
-
-BUILT_SOURCES = \
- plugin.c
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- packet-gryphon.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES)
-
-# Headers.
-CLEAN_HEADER_FILES = \
- packet-gryphon.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = gryphon.la
-
-gryphon_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_gryphon_la_SOURCES = \
- plugin.c
-
-gryphon_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-gryphon_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-gryphon_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- plugin.c
-
-EXTRA_DIST = \
- CMakeLists.txt
diff --git a/plugins/epan/irda/Makefile.am b/plugins/epan/irda/Makefile.am
deleted file mode 100644
index 77f891645f..0000000000
--- a/plugins/epan/irda/Makefile.am
+++ /dev/null
@@ -1,74 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = irda
-
-PLUGIN_VERSION = 0.0.6
-
-BUILT_SOURCES = \
- plugin.c
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- packet-ircomm.c \
- packet-irda.c \
- packet-sir.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES)
-
-# Headers.
-CLEAN_HEADER_FILES = \
- irda-appl.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = irda.la
-
-irda_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_irda_la_SOURCES = \
- plugin.c
-
-irda_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-irda_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-irda_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- $(NODIST_SRC_FILES) \
- $(NODIST_HEADER_FILES) \
- plugin.c
-
-MAINTAINERCLEANFILES = \
- $(GENERATED_SRC_FILES) \
- $(GENERATED_HEADER_FILES)
-
-EXTRA_DIST = \
- CMakeLists.txt
diff --git a/plugins/epan/mate/Makefile.am b/plugins/epan/mate/Makefile.am
deleted file mode 100644
index b8953c85fb..0000000000
--- a/plugins/epan/mate/Makefile.am
+++ /dev/null
@@ -1,129 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = mate
-
-PLUGIN_VERSION = 1.0.1
-
-BUILT_SOURCES = \
- plugin.c \
- $(LEMON_GENERATED_HEADER_FILES) \
- $(FLEX_GENERATED_HEADER_FILES)
-
-#
-# Files generated by Flex.
-#
-FLEX_GENERATED_C_FILES = \
- mate_parser.c
-
-FLEX_GENERATED_HEADER_FILES = \
- mate_parser_lex.h
-
-#
-# Files generated by Lemon.
-#
-LEMON_GENERATED_C_FILES = \
- mate_grammar.c
-
-LEMON_GENERATED_HEADER_FILES = \
- mate_grammar.h
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- packet-mate.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES) \
- mate_setup.c \
- mate_runtime.c \
- mate_util.c
-
-# Headers.
-CLEAN_HEADER_FILES = \
- mate.h \
- mate_util.h
-
-HEADER_FILES = \
- $(FLEX_GENERATED_HEADER_FILES) \
- $(CLEAN_HEADER_FILES)
-
-#
-# XXX - how to make this apply only to clean files?
-#
-#if HAVE_WARNINGS_AS_ERRORS
-#AM_CFLAGS += -Werror
-#endif
-
-epan_plugin_LTLIBRARIES = mate.la
-
-mate_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_mate_la_SOURCES = \
- $(NODIST_SRC_FILES) \
- $(NODIST_HEADER_FILES) \
- plugin.c
-
-mate_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-mate_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-mate_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- mate_grammar.out \
- $(NODIST_SRC_FILES) \
- $(NODIST_HEADER_FILES) \
- plugin.c
-
-MAINTAINERCLEANFILES = \
- $(GENERATED_SRC_FILES) \
- $(GENERATED_HEADER_FILES)
-
-EXTRA_DIST = \
- mate_grammar.lemon \
- mate_parser.l \
- CMakeLists.txt \
- examples/call.mate \
- examples/mms.mate \
- examples/pasv_ftp.mate \
- examples/tcp.mate \
- examples/web.mate \
- matelib/dns.mate \
- matelib/h225_ras.mate \
- matelib/isup.mate \
- matelib/megaco.mate \
- matelib/q931.mate \
- matelib/radius.mate \
- matelib/rtsp.mate \
- matelib/sip.mate
-
-mate_parser_lex.h : mate_parser.c
-
-mate_grammar.h : mate_grammar.c
-mate_grammar.c : mate_grammar.lemon mate.h mate_util.h $(LEMON) $(lemon_srcdir)/lempar.c
- $(AM_V_LEMON)$(LEMON) T=$(lemon_srcdir)/lempar.c $(srcdir)/mate_grammar.lemon || \
- (rm -f grammar.c grammar.h ; false)
diff --git a/plugins/epan/opcua/Makefile.am b/plugins/epan/opcua/Makefile.am
deleted file mode 100644
index d119418166..0000000000
--- a/plugins/epan/opcua/Makefile.am
+++ /dev/null
@@ -1,91 +0,0 @@
-# Makefile.am
-#
-# Adapted by Gerhard Gappmeier for OpcUa
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = opcua
-
-PLUGIN_VERSION = 1.1.0
-
-BUILT_SOURCES = \
- plugin.c
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- opcua.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES) \
- opcua_transport_layer.c \
- opcua_security_layer.c \
- opcua_application_layer.c \
- opcua_serviceparser.c \
- opcua_complextypeparser.c \
- opcua_enumparser.c \
- opcua_simpletypes.c \
- opcua_servicetable.c \
- opcua_extensionobjecttable.c \
- opcua_hfindeces.c \
- opcua_statuscode.c
-
-# Headers.
-CLEAN_HEADER_FILES = \
- opcua_complextypeparser.h \
- opcua_enumparser.h \
- opcua_hfindeces.h \
- opcua_statuscode.h \
- opcua_identifiers.h \
- opcua_serviceparser.h \
- opcua_simpletypes.h \
- opcua_servicetable.h \
- opcua_application_layer.h \
- opcua_security_layer.h \
- opcua_transport_layer.h \
- opcua_extensionobjectids.h \
- opcua_serviceids.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = opcua.la
-
-opcua_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_opcua_la_SOURCES = \
- plugin.c
-
-opcua_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-opcua_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-opcua_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- plugin.c
-
-EXTRA_DIST = \
- README \
- CMakeLists.txt
diff --git a/plugins/epan/pluginifdemo/Makefile.am b/plugins/epan/pluginifdemo/Makefile.am
deleted file mode 100644
index bad9605bc9..0000000000
--- a/plugins/epan/pluginifdemo/Makefile.am
+++ /dev/null
@@ -1,66 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = pluginifdemo
-
-PLUGIN_VERSION = 0.0.1
-
-BUILT_SOURCES = \
- plugin.c
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- pluginifdemo.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES)
-
-# Headers.
-CLEAN_HEADER_FILES = \
- pluginifdemo.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = pluginifdemo.la
-
-pluginifdemo_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_pluginifdemo_la_SOURCES = \
- plugin.c
-
-pluginifdemo_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-pluginifdemo_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-pluginifdemo_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- plugin.c
-
-EXTRA_DIST = \
- CMakeLists.txt
diff --git a/plugins/epan/profinet/Makefile.am b/plugins/epan/profinet/Makefile.am
deleted file mode 100644
index 0bb8b2fc9e..0000000000
--- a/plugins/epan/profinet/Makefile.am
+++ /dev/null
@@ -1,76 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = profinet
-
-PLUGIN_VERSION = 0.2.4
-
-BUILT_SOURCES = \
- plugin.c
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- packet-dcerpc-pn-io.c \
- packet-dcom-cba.c \
- packet-dcom-cba-acco.c \
- packet-pn-dcp.c \
- packet-pn-mrp.c \
- packet-pn-mrrt.c \
- packet-pn-ptcp.c \
- packet-pn-rt.c \
- packet-pn-rtc-one.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES) \
- packet-pn.c
-
-# Headers.
-CLEAN_HEADER_FILES = \
- packet-dcom-cba-acco.h \
- packet-pn.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = profinet.la
-
-profinet_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_profinet_la_SOURCES = \
- plugin.c
-
-profinet_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-profinet_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-profinet_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- plugin.c
-
-EXTRA_DIST = \
- CMakeLists.txt
diff --git a/plugins/epan/stats_tree/Makefile.am b/plugins/epan/stats_tree/Makefile.am
deleted file mode 100644
index ec4feb51f2..0000000000
--- a/plugins/epan/stats_tree/Makefile.am
+++ /dev/null
@@ -1,55 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = stats_tree
-
-PLUGIN_VERSION = 0.0.1
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES) \
- stats_tree_plugin.c \
- pinfo_stats_tree.c
-
-# Headers.
-CLEAN_HEADER_FILES = \
- pinfo_stats_tree.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = stats_tree.la
-
-stats_tree_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-stats_tree_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-stats_tree_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-stats_tree_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-EXTRA_DIST = \
- CMakeLists.txt
diff --git a/plugins/epan/transum/Makefile.am b/plugins/epan/transum/Makefile.am
deleted file mode 100644
index 19bce627c9..0000000000
--- a/plugins/epan/transum/Makefile.am
+++ /dev/null
@@ -1,71 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = transum
-
-PLUGIN_VERSION = 2.0.2
-
-BUILT_SOURCES = \
- plugin.c
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- packet-transum.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES) \
- decoders.c \
- extractors.c
-
-# Headers.
-CLEAN_HEADER_FILES = \
- decoders.h \
- extractors.h \
- packet-transum.h \
- preferences.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = transum.la
-
-transum_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_transum_la_SOURCES = \
- plugin.c
-
-transum_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-transum_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-transum_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- plugin.c
-
-EXTRA_DIST = \
- CMakeLists.txt
diff --git a/plugins/epan/unistim/Makefile.am b/plugins/epan/unistim/Makefile.am
deleted file mode 100644
index c6051aa980..0000000000
--- a/plugins/epan/unistim/Makefile.am
+++ /dev/null
@@ -1,75 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = unistim
-
-PLUGIN_VERSION = 0.0.2
-
-BUILT_SOURCES = \
- plugin.c
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- packet-unistim.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES)
-
-# Headers.
-CLEAN_HEADER_FILES = \
- audio.h \
- basic.h \
- broadcast.h \
- defines.h \
- display.h \
- expansion.h \
- key.h \
- network.h \
- uftp.h \
- packet-unistim.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = unistim.la
-
-unistim_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_unistim_la_SOURCES = \
- plugin.c
-
-unistim_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-unistim_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-unistim_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- plugin.c
-
-EXTRA_DIST = \
- CMakeLists.txt
diff --git a/plugins/epan/wimax/Makefile.am b/plugins/epan/wimax/Makefile.am
deleted file mode 100644
index 0e37798377..0000000000
--- a/plugins/epan/wimax/Makefile.am
+++ /dev/null
@@ -1,116 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = wimax
-
-PLUGIN_VERSION = 1.2.0
-
-BUILT_SOURCES = \
- plugin.c
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- packet-m2m.c \
- packet-wmx.c \
- wimax_cdma_code_decoder.c \
- wimax_compact_dlmap_ie_decoder.c \
- wimax_compact_ulmap_ie_decoder.c \
- wimax_fch_decoder.c \
- wimax_ffb_decoder.c \
- wimax_hack_decoder.c \
- wimax_harq_map_decoder.c \
- wimax_pdu_decoder.c \
- wimax_phy_attributes_decoder.c \
- mac_hd_generic_decoder.c \
- mac_hd_type1_decoder.c \
- mac_hd_type2_decoder.c \
- mac_mgmt_msg_decoder.c \
- msg_aas_fbck.c \
- msg_aas_beam.c \
- msg_arq.c \
- msg_clk_cmp.c \
- msg_dcd.c \
- msg_dlmap.c \
- msg_dreg.c \
- msg_dsa.c \
- msg_dsc.c \
- msg_dsd.c \
- msg_dsx_rvd.c \
- msg_fpc.c \
- msg_pkm.c \
- msg_pmc.c \
- msg_prc_lt_ctrl.c \
- msg_reg_req.c \
- msg_reg_rsp.c \
- msg_rep.c \
- msg_res_cmd.c \
- msg_rng_req.c \
- msg_rng_rsp.c \
- msg_sbc.c \
- msg_ucd.c \
- msg_ulmap.c \
- wimax_utils.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES) \
- crc.c \
- crc_data.c \
- wimax_tlv.c
-
-# Headers.
-CLEAN_HEADER_FILES = \
- crc.h \
- wimax_bits.h \
- wimax_compact_dlmap_ie_decoder.h \
- wimax_compact_ulmap_ie_decoder.h \
- wimax_mac.h \
- wimax_tlv.h \
- wimax_utils.h \
- wimax-int.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = wimax.la
-
-wimax_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_wimax_la_SOURCES = \
- plugin.c
-
-wimax_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-wimax_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-wimax_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- plugin.c
-
-EXTRA_DIST = \
- CMakeLists.txt \
- README.wimax
diff --git a/plugins/epan/wimaxasncp/Makefile.am b/plugins/epan/wimaxasncp/Makefile.am
deleted file mode 100644
index ffb745cd69..0000000000
--- a/plugins/epan/wimaxasncp/Makefile.am
+++ /dev/null
@@ -1,100 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = wimaxasncp
-
-PLUGIN_VERSION = 0.0.1
-
-BUILT_SOURCES = \
- plugin.c \
- $(LEMON_GENERATED_HEADER_FILES) \
- $(FLEX_GENERATED_HEADER_FILES)
-
-#
-# Files generated by Flex.
-#
-FLEX_GENERATED_C_FILES = \
- wimaxasncp_dict.c
-
-FLEX_GENERATED_HEADER_FILES = \
- wimaxasncp_dict_lex.h
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- packet-wimaxasncp.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES)
-
-# Headers.
-CLEAN_HEADER_FILES = \
- wimaxasncp_dict.h
-
-HEADER_FILES = \
- $(FLEX_GENERATED_HEADER_FILES) \
- $(CLEAN_HEADER_FILES)
-
-#
-# XXX - how to make this apply only to clean files?
-#
-#if HAVE_WARNINGS_AS_ERRORS
-#AM_CFLAGS += -Werror
-#endif
-
-epan_plugin_LTLIBRARIES = wimaxasncp.la
-
-wimaxasncp_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_wimaxasncp_la_SOURCES = \
- plugin.c
-
-wimaxasncp_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-wimaxasncp_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-wimaxasncp_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- plugin.c
-
-MAINTAINERCLEANFILES = \
- $(GENERATED_SRC_FILES) \
- $(GENERATED_HEADER_FILES)
-
-EXTRA_DIST = \
- wimaxasncp_dict.l \
- CMakeLists.txt
-
-wimaxasncp_dict_lex.h: wimaxasncp_dict.c
-
-wimaxasncp_dict.c: wimaxasncp_dict.h
-
-#
-# Install the wimaxasncp DTD and XML files in the "wimaxasncp"
-# subdirectory of $(pkgdatadir)
-#
-wimaxasncpdir = $(pkgdatadir)/wimaxasncp
diff --git a/plugins/epan/wimaxmacphy/Makefile.am b/plugins/epan/wimaxmacphy/Makefile.am
deleted file mode 100644
index d69df68bac..0000000000
--- a/plugins/epan/wimaxmacphy/Makefile.am
+++ /dev/null
@@ -1,66 +0,0 @@
-# Makefile.am
-#
-# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-include $(top_srcdir)/Makefile.am.inc
-include $(top_srcdir)/plugins/epan/Makefile.am.inc
-
-# the name of the plugin
-PLUGIN_NAME = wimaxmacphy
-
-PLUGIN_VERSION = 0.0.1
-
-BUILT_SOURCES = \
- plugin.c
-
-# Non-generated sources to be scanned for registration routines
-NONGENERATED_REGISTER_C_FILES = \
- packet-wimaxmacphy.c
-
-# Non-generated sources
-NONGENERATED_C_FILES = \
- $(NONGENERATED_REGISTER_C_FILES)
-
-# Headers.
-CLEAN_HEADER_FILES = \
- packet-wimaxmacphy.h
-
-HEADER_FILES = \
- $(CLEAN_HEADER_FILES)
-
-epan_plugin_LTLIBRARIES = wimaxmacphy.la
-
-wimaxmacphy_la_SOURCES = \
- $(SRC_FILES) \
- $(HEADER_FILES)
-
-nodist_wimaxmacphy_la_SOURCES = \
- plugin.c
-
-wimaxmacphy_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
-
-wimaxmacphy_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
-
-wimaxmacphy_la_LDFLAGS = $(PLUGIN_LDFLAGS)
-
-DISTCLEANFILES = \
- plugin.c
-
-EXTRA_DIST = \
- CMakeLists.txt