c1d723fe060c5790145b1225043eea653c384a55
[obnox/wireshark/wip.git] / epan / Makefile.common
1 # Makefile.common
2 #     Contains the stuff from Makefile.am and Makefile.nmake that is
3 #     a) common to both files and
4 #     b) portable between both files
5 #
6 # $Id$
7 #
8 # Ethereal - Network traffic analyzer
9 # By Gerald Combs <gerald@ethereal.com>
10 # Copyright 1998 Gerald Combs
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 LIBETHEREAL_SRC =               \
27         addr_and_mask.c         \
28         addr_resolv.c           \
29         atalk-utils.c           \
30         base64.c                \
31         bitswap.c               \
32         charsets.c              \
33         circuit.c               \
34         column-utils.c          \
35         conversation.c          \
36         epan.c                  \
37         except.c                \
38         filesystem.c            \
39         frame_data.c            \
40         ipv4.c                  \
41         osi-utils.c             \
42         packet.c                \
43         plugins.c               \
44         proto.c                 \
45         range.c                 \
46         sna-utils.c             \
47         strutil.c               \
48         timestamp.c             \
49         to_str.c                \
50         tvbuff.c                \
51         value_string.c
52
53 LIBETHEREAL_INCLUDES =          \
54         addr_and_mask.h         \
55         addr_resolv.h           \
56         address.h               \
57         atalk-utils.h           \
58         base64.h                \
59         bitswap.h               \
60         charsets.h              \
61         circuit.h               \
62         column_info.h           \
63         conversation.h          \
64         column-utils.h          \
65         epan.h                  \
66         epan_dissect.h          \
67         except.h                \
68         exceptions.h            \
69         filesystem.h            \
70         frame_data.h            \
71         gdebug.h                \
72         ipv4.h                  \
73         ipv6-utils.h            \
74         nstime.h                \
75         osi-utils.h             \
76         packet.h                \
77         packet_info.h           \
78         pint.h                  \
79         plugins.h               \
80         proto.h                 \
81         range.h                 \
82         report_err.h            \
83         slab.h                  \
84         sna-utils.h             \
85         strutil.h               \
86         timestamp.h             \
87         to_str.h                \
88         tvbuff.h                \
89         value_string.h
90
91 # dissector helpers (needed from the dissectors, but not a dissector itself)
92 DISSECTOR_SUPPORT_SRC = \
93         ../adler32.c    \
94         ../afn.c        \
95         ../asn1.c       \
96         ../column.c     \
97         ../crc16.c      \
98         ../crc32.c      \
99         ../crypt-des.c  \
100         ../crypt-md4.c  \
101         ../crypt-md5.c  \
102         ../crypt-rc4.c  \
103         ../follow.c     \
104         ../h225-persistentdata.c        \
105         ../in_cksum.c   \
106         ../ipproto.c    \
107         ../prefs.c      \
108         ../ptvcursor.c  \
109         ../reassemble.c \
110         ../req_resp_hdrs.c      \
111         ../sha1.c       \
112         ../t35.c        \
113         ../tap.c        \
114         ../xdlc.c       \
115         ../xmlstub.c
116