Declare the snapshot_length as unsigned.
[obnox/wireshark/wip.git] / wiretap / 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 # Wireshark - Network traffic analyzer
9 # By Gerald Combs <gerald@wireshark.org>
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 # C source files that are part of the Wiretap source; this includes only
27 # .c files, not YACC or Lex or... files (as Makefile.nmake maps this list
28 # into a list of object files by replacing ".c" with ".obj") or files
29 # generated from YACC or Lex files (as Automake doesn't want them in
30 # _SOURCES variables).
31 NONGENERATED_C_FILES = \
32         5views.c                \
33         airopeek9.c             \
34         ascendtext.c            \
35         atm.c                   \
36         ber.c                   \
37         btsnoop.c               \
38         buffer.c                \
39         catapult_dct2000.c      \
40         commview.c              \
41         cosine.c                \
42         csids.c                 \
43         daintree-sna.c          \
44         dbs-etherwatch.c        \
45         dct3trace.c             \
46         erf.c                   \
47         etherpeek.c             \
48         eyesdn.c                \
49         file_access.c           \
50         file_wrappers.c         \
51         hcidump.c               \
52         i4btrace.c              \
53         ipfix.c                 \
54         iptrace.c               \
55         iseries.c               \
56         jpeg_jfif.c             \
57         k12.c                   \
58         lanalyzer.c             \
59         libpcap.c               \
60         mpeg.c                  \
61         netmon.c                \
62         netscaler.c             \
63         netscreen.c             \
64         nettl.c                 \
65         network_instruments.c   \
66         netxray.c               \
67         ngsniffer.c             \
68         packetlogger.c          \
69         pcap-common.c           \
70         pcapng.c                \
71         pppdump.c               \
72         radcom.c                \
73         snoop.c                 \
74         tnef.c                  \
75         toshiba.c               \
76         visual.c                \
77         vms.c                   \
78         wtap.c
79
80 # Header files that are not generated from other files
81 NONGENERATED_HEADER_FILES = \
82         5views.h                \
83         airopeek9.h             \
84         ascendtext.h            \
85         ascend-int.h            \
86         atm.h                   \
87         ber.h                   \
88         buffer.h                \
89         btsnoop.h               \
90         catapult_dct2000.h      \
91         commview.h              \
92         cosine.h                \
93         csids.h                 \
94         daintree-sna.h          \
95         dbs-etherwatch.h        \
96         dct3trace.h             \
97         erf.h                   \
98         etherpeek.h             \
99         eyesdn.h                \
100         file_wrappers.h         \
101         hcidump.h               \
102         i4btrace.h              \
103         i4b_trace.h             \
104         ipfix.h                 \
105         iptrace.h               \
106         iseries.h               \
107         jpeg_jfif.h             \
108         k12.h                   \
109         lanalyzer.h             \
110         libpcap.h               \
111         mpeg.h                  \
112         netmon.h                \
113         netscreen.h             \
114         netscaler.h             \
115         nettl.h                 \
116         network_instruments.h   \
117         netxray.h               \
118         ngsniffer.h             \
119         packetlogger.h          \
120         pcap-common.h           \
121         pcap-encap.h            \
122         pcapng.h                \
123         pppdump.h               \
124         radcom.h                \
125         snoop.h                 \
126         tnef.h                  \
127         toshiba.h               \
128         visual.h                \
129         vms.h                   \
130         wtap.h                  \
131         wtap-int.h
132
133 # Files that generate compileable files
134 GENERATOR_FILES = \
135        ascend.y        \
136        ascend_scanner.l \
137        k12text.l
138
139 # The C source files they generate.
140 GENERATED_C_FILES = \
141         ascend.c        \
142         ascend_scanner.c        \
143         k12text.c
144
145 # The header files that they generate.
146 GENERATED_HEADER_FILES = \
147         ascend.h        \
148         ascend_scanner_lex.h    \
149         k12text_lex.h
150
151 # All the generated files.
152 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)