Since code generated by lex may trigger gcc warnings, we are now generating two
[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         ascend.c                \
35         atm.c                   \
36         ber.c                   \
37         buffer.c                \
38         catapult_dct2000.c      \
39         cosine.c                \
40         csids.c                 \
41         dbs-etherwatch.c        \
42         erf.c                   \
43         etherpeek.c             \
44         eyesdn.c                \
45         file_access.c           \
46         file_wrappers.c         \
47         hcidump.c               \
48         i4btrace.c              \
49         iptrace.c               \
50         iseries.c               \
51         k12.c                   \
52         lanalyzer.c             \
53         libpcap.c               \
54         mpeg.c                  \
55         mpeg-audio.c            \
56         netmon.c                \
57         nettl.c                 \
58         network_instruments.c   \
59         netxray.c               \
60         ngsniffer.c             \
61         pppdump.c               \
62         radcom.c                \
63         snoop.c                 \
64         toshiba.c               \
65         visual.c                \
66         vms.c                   \
67         wtap-plugins.c                  \
68         wtap.c
69
70 # Header files that are not generated from other files
71 NONGENERATED_HEADER_FILES = \
72         5views.h                \
73         airopeek9.h             \
74         ascend.h                \
75         ascend-int.h            \
76         atm.h                   \
77         ber.h                   \
78         buffer.h                \
79         catapult_dct2000.h      \
80         cosine.h                \
81         csids.h                 \
82         dbs-etherwatch.h        \
83         erf.h                   \
84         etherpeek.h             \
85         eyesdn.h                \
86         file_util.h             \
87         file_wrappers.h         \
88         hcidump.h               \
89         i4btrace.h              \
90         i4b_trace.h             \
91         iptrace.h               \
92         iseries.h               \
93         k12.h                   \
94         lanalyzer.h             \
95         libpcap.h               \
96         mpeg.h                  \
97         mpeg-audio.h            \
98         netmon.h                \
99         nettl.h                 \
100         network_instruments.h   \
101         netxray.h               \
102         ngsniffer.h             \
103         pppdump.h               \
104         radcom.h                \
105         snoop.h                 \
106         toshiba.h               \
107         visual.h                \
108         vms.h                   \
109         wtap.h                  \
110         wtap-capture.h          \
111         wtap-int.h
112
113 # The C source files they generate.
114 GENERATED_C_FILES = \
115         ascend-grammar.c        \
116         ascend-scanner.c        \
117         k12text.c
118
119 # The header files that they generate.
120 GENERATED_HEADER_FILES = \
121         ascend-grammar.h
122
123 # All the generated files.
124 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)