Clean up white space.
[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         iptrace.c               \
54         iseries.c               \
55         jpeg_jfif.c             \
56         k12.c                   \
57         lanalyzer.c             \
58         libpcap.c               \
59         mpeg.c                  \
60         netmon.c                \
61         netscaler.c             \
62         netscreen.c             \
63         nettl.c                 \
64         network_instruments.c   \
65         netxray.c               \
66         ngsniffer.c             \
67         packetlogger.c          \
68         pcap-common.c           \
69         pcapng.c                \
70         pppdump.c               \
71         radcom.c                \
72         snoop.c                 \
73         tnef.c                  \
74         toshiba.c               \
75         visual.c                \
76         vms.c                   \
77         wtap.c
78
79 # Header files that are not generated from other files
80 NONGENERATED_HEADER_FILES = \
81         5views.h                \
82         airopeek9.h             \
83         ascendtext.h            \
84         ascend-int.h            \
85         atm.h                   \
86         ber.h                   \
87         buffer.h                \
88         btsnoop.h               \
89         catapult_dct2000.h      \
90         commview.h              \
91         cosine.h                \
92         csids.h                 \
93         daintree-sna.h          \
94         dbs-etherwatch.h        \
95         dct3trace.h             \
96         erf.h                   \
97         etherpeek.h             \
98         eyesdn.h                \
99         file_wrappers.h         \
100         hcidump.h               \
101         i4btrace.h              \
102         i4b_trace.h             \
103         iptrace.h               \
104         iseries.h               \
105         jpeg_jfif.h             \
106         k12.h                   \
107         lanalyzer.h             \
108         libpcap.h               \
109         mpeg.h                  \
110         netmon.h                \
111         netscreen.h             \
112         netscaler.h             \
113         nettl.h                 \
114         network_instruments.h   \
115         netxray.h               \
116         ngsniffer.h             \
117         packetlogger.h          \
118         pcap-common.h           \
119         pcap-encap.h            \
120         pcapng.h                \
121         pppdump.h               \
122         radcom.h                \
123         snoop.h                 \
124         tnef.h                  \
125         toshiba.h               \
126         visual.h                \
127         vms.h                   \
128         wtap.h                  \
129         wtap-int.h
130
131 # Files that generate compileable files
132 GENERATOR_FILES = \
133        ascend.y        \
134        ascend_scanner.l \
135        k12text.l
136
137 # The C source files they generate.
138 GENERATED_C_FILES = \
139         ascend.c        \
140         ascend_scanner.c        \
141         k12text.c
142
143 # The header files that they generate.
144 GENERATED_HEADER_FILES = \
145         ascend.h        \
146         ascend_scanner_lex.h    \
147         k12text_lex.h
148
149 # All the generated files.
150 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)