Basic skeleton for wmem.
[metze/wireshark/wip.git] / epan / wmem / Makefile.am
1 # Makefile.am
2 # Automake file for Wireshark Memory Manager
3 #
4 # $Id$
5 #
6 # Wireshark - Network traffic analyzer
7 # By Gerald Combs <gerald@wireshark.org>
8 # Copyright 1998 Gerald Combs
9 #
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.
14 #
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.
19 #
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.
23
24 INCLUDES = -I$(top_srcdir)
25
26 include Makefile.common
27
28 if HAVE_WARNINGS_AS_ERRORS
29 AM_CFLAGS = -Werror
30 endif
31
32 AM_CPPFLAGS = $(LIBWMEM_CFLAGS)
33
34 noinst_LTLIBRARIES = libwmem.la
35
36 CLEANFILES = \
37         libwmem.a       \
38         libwmem.la      \
39         *~
40
41 DISTCLEANFILES =
42
43 MAINTAINERCLEANFILES =  \
44         Makefile.in
45
46 libairpdcap_la_SOURCES =        \
47         $(LIBWMEM_SRC)  \
48         $(LIBWMEM_INCLUDES)
49
50 EXTRA_DIST = \
51         Custom.common \
52         Makefile.common \
53         Makefile.nmake
54
55 checkapi:
56         $(PERL) ../../tools/checkAPIs.pl -g termoutput -build \
57         $(LIBWMEM_SRC)
58
59
60 #
61 # Editor modelines  -  http://www.wireshark.org/tools/modelines.html
62 #
63 # Local variables:
64 # c-basic-offset: 8
65 # tab-width: 8
66 # indent-tabs-mode: t
67 # End:
68 #
69 # vi: set shiftwidth=8 tabstop=8 noexpandtab:
70 # :indentSize=8:tabSize=8:noTabs=false:
71 #