wireshark/epan/wslua/Makefile.am
Stephen Fisher 62f88a4a04 From Sebastien Tandel:
(Temporarily disable the warnings as errors default on Unix to get
to get the buildbots and people with gcc40 going again until those
additional warnings gcc40 generates can be fixed-I'm working on it
ASAP)

   Patch for configure.in which disables by default the treatment of
warnings as errors.
It can be enabled with './configure --with-warnings-as-errors'.
The macro will test first if GCC is present. If it's the case,
HAVE_WARNINGS_AS_ERRORS is defined. All the USING_GCC have been replaced
by HAVE_WARNINGS_AS_ERRORS.
With this switch, people won't suffer from unexpected warnings when
downloading svn sources during the transition time ;)


svn path=/trunk/; revision=21153
2007-03-23 17:49:59 +00:00

112 lines
2.3 KiB
Makefile

# Makefile.am
#
# $Id$
#
# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
if HAVE_WARNINGS_AS_ERRORS
AM_CFLAGS = -Werror
endif
INCLUDES = -I$(top_srcdir) @LUA_INCLUDES@
noinst_LTLIBRARIES = libwslua.la
wslua_modules = \
wslua_tvb.c \
wslua_proto.c \
wslua_tree.c \
wslua_pinfo.c \
wslua_listener.c \
wslua_gui.c \
wslua_util.c \
wslua_field.c \
wslua_dumper.c
libwslua_la_SOURCES = \
$(wslua_modules) \
taps_wslua.c \
register_wslua.c \
init_wslua.c \
wslua.h
libwslua_la_LIBADD = @LUA_LIBS@
BUILT_SOURCES = \
taps_wslua.c \
register_wslua.c \
declare_wslua.h
dist_pkgdata_DATA = \
init.lua \
console.lua \
dtd_gen.lua
CLEANFILES = \
*~
DISTCLEANFILES = \
$(BUILT_SOURCES) \
taps.txt \
wslua_register.h
MAINTAINERCLEANFILES = \
Makefile.in \
register_wslua.c \
declare_wslua.h \
init.lua
EXTRA_DIST = \
declare_wslua.h \
register_wslua.c \
taps \
make-reg.pl \
template-init.lua \
make-init-lua.pl \
make-taps.pl \
Makefile.nmake
taps_used = \
../dissectors/packet-http.h \
../dissectors/packet-ip.h \
../dissectors/packet-udp.h \
../dissectors/packet-h225.h
taps: $(taps_used)
touch taps
taps_wslua.c: make-taps.pl taps
$(PERL) $(srcdir)/make-taps.pl taps taps_wslua.c taps.txt
taps.txt: taps_wslua.c
wslua.h: declare_wslua.h
register_wslua.c: declare_wslua.h
declare_wslua.h: make-reg.pl $(wslua_modules) taps_wslua.c
$(PERL) $(srcdir)/make-reg.pl $(wslua_modules);
dummy:
touch dummy
init.lua: template-init.lua make-init-lua.pl ../ftypes/ftypes.h ../../wiretap/wtap.h ../proto.h ../../stat_menu.h
$(PERL) $(srcdir)/make-init-lua.pl template-init.lua > init.lua