Provide for per-protocol-tree data in the proto_tree code.
[metze/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.30 2001/12/18 19:09:03 gram 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         column_info.h           \
43         conversation.c          \
44         conversation.h          \
45         column-utils.c          \
46         column-utils.h          \
47         epan.c                  \
48         epan.h                  \
49         epan_dissect.h  \
50         except.c                \
51         except.h                \
52         exceptions.h            \
53         filesystem.c            \
54         filesystem.h            \
55         frame_data.c            \
56         frame_data.h            \
57         gdebug.h                \
58         int-64bit.c             \
59         int-64bit.h             \
60         ipv4.c                  \
61         ipv4.h                  \
62         ipv6-utils.h            \
63         nstime.h                \
64         osi-utils.c             \
65         osi-utils.h             \
66         packet.c                \
67         packet.h                \
68         packet_info.h           \
69         pint.h                  \
70         plugins.c               \
71         plugins.h               \
72         proto.c                 \
73         proto.h                 \
74         resolv.c                \
75         resolv.h                \
76         sna-utils.c             \
77         sna-utils.h             \
78         strutil.c               \
79         strutil.h               \
80         timestamp.h             \
81         to_str.c                \
82         to_str.h                \
83         tvbuff.c                \
84         tvbuff.h                \
85         value_string.c          \
86         value_string.h          
87
88 EXTRA_libethereal_a_SOURCES =   \
89         inet_aton.c             \
90         inet_pton.c             \
91         inet_ntop.c             \
92         inet_aton.h             \
93         inet_v6defs.h
94
95 EXTRA_DIST = \
96         config.h.win32          \
97         Makefile.nmake          \
98         tvbtest.c
99
100 CLEANFILES = \
101         libethereal.a   \
102         *~
103
104 #
105 # Add the object files for missing routines, if any.
106 #
107 libethereal_a_LIBADD = @INET_ATON_O@ @INET_PTON_O@ @INET_NTOP_O@
108 libethereal_a_DEPENDENCIES = @INET_ATON_O@ @INET_PTON_O@ @INET_NTOP_O@
109
110
111 tvbtest: tvbtest.o tvbuff.o except.o strutil.o
112         $(LINK) -o tvbtest tvbtest.o tvbuff.o except.o strutil.o `glib-config --libs`