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