Moved the value_string structures and function from packet.{c,h} into
[obnox/wireshark/wip.git] / epan / Makefile.am
1 # Makefile.am
2 # Automake file for the EPAN library
3 # (Ethereal Protocol ANalyzer Library)
4 #
5 # $Id: Makefile.am,v 1.19 2001/04/01 03:18:41 hagbard Exp $
6 #
7 # Ethereal - Network traffic analyzer
8 # By Gerald Combs <gerald@zing.org>
9 # Copyright 1998 Gerald Combs
10 #
11
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License
14 # as published by the Free Software Foundation; either version 2
15 # of the License, or (at your option) any later version.
16
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU General Public License for more details.
21
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25
26 SUBDIRS = ftypes dfilter
27
28 # EPAN will eventually be a shared library. While I move source code around,
29 # however, it is an archive library.
30
31 ACLOCAL_AMFLAGS = `../aclocal-flags`
32
33 noinst_LIBRARIES = libethereal.a
34
35 INCLUDES = -I$(srcdir)/..
36
37 libethereal_a_SOURCES = \
38         atalk-utils.c           \
39         atalk-utils.h           \
40         bitswap.c               \
41         bitswap.h               \
42         conversation.c          \
43         conversation.h          \
44         epan.c                  \
45         epan.h                  \
46         except.c                \
47         except.h                \
48         exceptions.h            \
49         filesystem.c            \
50         filesystem.h            \
51         gdebug.h                \
52         ipv4.c                  \
53         ipv4.h                  \
54         packet.c                \
55         packet.h                \
56         pint.h                  \
57         plugins.c               \
58         plugins.h               \
59         proto.c                 \
60         proto.h                 \
61         resolv.c                \
62         resolv.h                \
63         sna-utils.c             \
64         sna-utils.h             \
65         strutil.c               \
66         strutil.h               \
67         to_str.c                \
68         to_str.h                \
69         tvbuff.c                \
70         tvbuff.h                \
71         value_string.c          \
72         value_string.h          
73
74 EXTRA_libethereal_a_SOURCES =   \
75         inet_aton.c             \
76         inet_pton.c             \
77         inet_ntop.c             \
78         inet_aton.h             \
79         inet_v6defs.h
80
81 EXTRA_DIST = \
82         config.h.win32          \
83         Makefile.nmake          \
84         tvbtest.c
85
86 CLEANFILES = \
87         libethereal.a   \
88         *~
89
90 #
91 # Add the object files for missing routines, if any.
92 #
93 libethereal_a_LIBADD = @INET_ATON_O@ @INET_PTON_O@ @INET_NTOP_O@
94 libethereal_a_DEPENDENCIES = @INET_ATON_O@ @INET_PTON_O@ @INET_NTOP_O@
95
96
97 tvbtest: tvbtest.o tvbuff.o except.o strutil.o
98         $(LINK) -o tvbtest tvbtest.o tvbuff.o except.o strutil.o `glib-config --libs`