remove the never used wiretap/wtap-plugins.c
[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.c
68
69 # Header files that are not generated from other files
70 NONGENERATED_HEADER_FILES = \
71         5views.h                \
72         airopeek9.h             \
73         ascend.h                \
74         ascend-int.h            \
75         atm.h                   \
76         ber.h                   \
77         buffer.h                \
78         catapult_dct2000.h      \
79         cosine.h                \
80         csids.h                 \
81         dbs-etherwatch.h        \
82         erf.h                   \
83         etherpeek.h             \
84         eyesdn.h                \
85         file_util.h             \
86         file_wrappers.h         \
87         hcidump.h               \
88         i4btrace.h              \
89         i4b_trace.h             \
90         iptrace.h               \
91         iseries.h               \
92         k12.h                   \
93         lanalyzer.h             \
94         libpcap.h               \
95         mpeg.h                  \
96         mpeg-audio.h            \
97         netmon.h                \
98         nettl.h                 \
99         network_instruments.h   \
100         netxray.h               \
101         ngsniffer.h             \
102         pppdump.h               \
103         radcom.h                \
104         snoop.h                 \
105         toshiba.h               \
106         visual.h                \
107         vms.h                   \
108         wtap.h                  \
109         wtap-capture.h          \
110         wtap-int.h
111
112 # Files that generate compileable files
113 GENERATOR_SOURCES = \
114        ascend-grammar.y        \
115        ascend-scanner.l \
116        k12text.l
117
118 # The C source files they generate.
119 GENERATED_C_FILES = \
120         ascend-grammar.c        \
121         ascend-scanner.c        \
122         k12text.c
123
124 # The header files that they generate.
125 GENERATED_HEADER_FILES = \
126         ascend-grammar.h
127
128 # All the generated files.
129 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)