From 58459d3fba39398b53294beccc307d539bd0db33 Mon Sep 17 00:00:00 2001 From: Jeff Morriss Date: Tue, 20 May 2008 21:51:01 +0000 Subject: Create a new "Wireshark utility" library and move the mpeg-audio stuff from wiretap to this new libwsutil. This solves http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1677 by making libwireshark no longer depend on libwiretap. svn path=/trunk/; revision=25330 --- wsutil/Makefile.am | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 wsutil/Makefile.am (limited to 'wsutil/Makefile.am') diff --git a/wsutil/Makefile.am b/wsutil/Makefile.am new file mode 100644 index 0000000000..f99671e773 --- /dev/null +++ b/wsutil/Makefile.am @@ -0,0 +1,46 @@ +# Makefile.am +# +# $Id$ +# +# Wireshark - Network traffic analyzer +# By Gerald Combs +# 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. + +if HAVE_WARNINGS_AS_ERRORS +AM_CFLAGS = -Werror +endif + +lib_LTLIBRARIES = libwsutil.la + +CLEANFILES = \ + libwsutil.a \ + libwsutil.la \ + *~ + +MAINTAINERCLEANFILES = \ + Makefile.in + +libwsutil_la_SOURCES = \ + mpeg-audio.c \ + mpeg-audio.h + +libwsutil_la_LIBADD = @GLIB_LIBS@ + +EXTRA_DIST = \ + Makefile.nmake + -- cgit v1.2.3