Fix for bug 848. Make a scrollable window when more than 10 interfaces are listed.
[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 # 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 # 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         ascend.c                \
35         atm.c                   \
36         buffer.c                \
37         cosine.c                \
38         csids.c                 \
39         dbs-etherwatch.c        \
40         erf.c                   \
41         etherpeek.c             \
42         eyesdn.c                \
43         file_access.c           \
44         file_wrappers.c         \
45         hcidump.c               \
46         i4btrace.c              \
47         iptrace.c               \
48         iseries.c               \
49         k12.c                   \
50         lanalyzer.c             \
51         libpcap.c               \
52         netmon.c                \
53         nettl.c                 \
54         network_instruments.c   \
55         netxray.c               \
56         ngsniffer.c             \
57         pppdump.c               \
58         radcom.c                \
59         snoop.c                 \
60         toshiba.c               \
61         visual.c                \
62         vms.c                   \
63         wtap.c
64
65 # Header files that are not generated from other files
66 NONGENERATED_HEADER_FILES = \
67         5views.h                \
68         airopeek9.h             \
69         ascend.h                \
70         ascend-int.h            \
71         atm.h                   \
72         buffer.h                \
73         cosine.h                \
74         csids.h                 \
75         dbs-etherwatch.h        \
76         erf.h                   \
77         etherpeek.h             \
78         eyesdn.h                \
79         file_util.h             \
80         file_wrappers.h         \
81         hcidump.h               \
82         i4btrace.h              \
83         i4b_trace.h             \
84         iptrace.h               \
85         iseries.h               \
86         k12.h                   \
87         lanalyzer.h             \
88         libpcap.h               \
89         netmon.h                \
90         nettl.h                 \
91         network_instruments.h   \
92         netxray.h               \
93         ngsniffer.h             \
94         pppdump.h               \
95         radcom.h                \
96         snoop.h                 \
97         toshiba.h               \
98         visual.h                \
99         vms.h                   \
100         wtap.h                  \
101         wtap-capture.h          \
102         wtap-int.h
103
104 # Files that generate compileable files
105 GENERATOR_SOURCES = \
106         ascend-grammar.y        \
107         ascend-scanner.l
108
109 # The C source files they generate.
110 GENERATED_C_FILES = \
111         ascend-grammar.c        \
112         ascend-scanner.c
113
114 # The header files that they generate.
115 GENERATED_HEADER_FILES = \
116         ascend-grammar.h
117
118 # All the generated files.
119 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)