aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-10-03 18:54:41 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-10-03 18:54:41 +0000
commit7c65cc96c2ab8ff6cb18c1312e5cbece9dbb2445 (patch)
tree278c0fb469e7c5602f84d47a608a29f098f16655
parent90ef999a26a061ba37d4b08c31b6e0701b8b4d09 (diff)
First check in of yhe h223 plugin, not part of the build script yet.
svn path=/trunk/; revision=16087
-rw-r--r--plugins/h223/Makefile.am52
1 files changed, 52 insertions, 0 deletions
diff --git a/plugins/h223/Makefile.am b/plugins/h223/Makefile.am
new file mode 100644
index 0000000000..6ad7f050d9
--- /dev/null
+++ b/plugins/h223/Makefile.am
@@ -0,0 +1,52 @@
+# Makefile.am
+# Automake file for Ethereal/H223
+#
+# $Id$
+#
+# Ethereal - Network traffic analyzer
+# By Gerald Combs <gerald@ethereal.com>
+# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+
+INCLUDES = -I$(top_srcdir)
+
+plugindir = @plugindir@
+
+plugin_LTLIBRARIES = h223.la
+h223_la_SOURCES = \
+ golay.h \
+ golay.c \
+ moduleinfo.h \
+ packet-h223.c \
+ packet-h223.h \
+ packet-srp.c \
+ packet-srp.h \
+ plugin.c
+
+h223_la_LDFLAGS = -module -avoid-version
+
+# Libs must be cleared, or else libtool won't create a shared module.
+# If your module needs to be linked against any particular libraries,
+# add them here.
+LIBS =
+
+CLEANFILES = \
+ h223 \
+ *~
+
+EXTRA_DIST = \
+ Makefile.nmake