Move the column preferences stuff to epan (the rest of the preferences
[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         adler32.c               \
30         afn.c                   \
31         atalk-utils.c           \
32         base64.c                \
33         bitswap.c               \
34         charsets.c              \
35         circuit.c               \
36         column.c                \
37         column-utils.c          \
38         conversation.c          \
39         crc16.c                 \
40         crc32.c                 \
41         crypt-des.c             \
42         crypt-md4.c             \
43         crypt-md5.c             \
44         crypt-rc4.c             \
45         epan.c                  \
46         except.c                \
47         filesystem.c            \
48         frame_data.c            \
49         in_cksum.c              \
50         ipproto.c               \
51         ipv4.c                  \
52         osi-utils.c             \
53         packet.c                \
54         plugins.c               \
55         prefs.c                 \
56         proto.c                 \
57         range.c                 \
58         req_resp_hdrs.c         \
59         sha1.c                  \
60         sna-utils.c             \
61         strutil.c               \
62         t35.c                   \
63         tap.c                   \
64         timestamp.c             \
65         to_str.c                \
66         tvbuff.c                \
67         value_string.c          \
68         xdlc.c
69
70 LIBETHEREAL_INCLUDES =          \
71         addr_and_mask.h         \
72         addr_resolv.h           \
73         address.h               \
74         adler32.h               \
75         afn.h                   \
76         atalk-utils.h           \
77         base64.h                \
78         bitswap.h               \
79         charsets.h              \
80         circuit.h               \
81         column.h                \
82         column_info.h           \
83         column-utils.h          \
84         conversation.h          \
85         crc16.h                 \
86         crc32.h                 \
87         crypt-des.h             \
88         crypt-md4.h             \
89         crypt-md5.h             \
90         crypt-rc4.h             \
91         epan.h                  \
92         epan_dissect.h          \
93         except.h                \
94         exceptions.h            \
95         filesystem.h            \
96         frame_data.h            \
97         gdebug.h                \
98         in_cksum.h              \
99         ipproto.h               \
100         ipv4.h                  \
101         ipv6-utils.h            \
102         nstime.h                \
103         osi-utils.h             \
104         packet.h                \
105         packet_info.h           \
106         pint.h                  \
107         plugins.h               \
108         prefs.h                 \
109         proto.h                 \
110         range.h                 \
111         report_err.h            \
112         req_resp_hdrs.h         \
113         sha1.h                  \
114         slab.h                  \
115         sna-utils.h             \
116         strutil.h               \
117         t35.h                   \
118         tap.h                   \
119         timestamp.h             \
120         to_str.h                \
121         tvbuff.h                \
122         value_string.h          \
123         xdlc.h
124
125 # dissector helpers (needed from the dissectors, but not a dissector itself)
126 DISSECTOR_SUPPORT_SRC = \
127         ../asn1.c       \
128         ../follow.c     \
129         ../h225-persistentdata.c        \
130         ../ptvcursor.c  \
131         ../reassemble.c \
132         ../xmlstub.c
133