Initial checkin of support to read TamoSoft's CommView packet capture files
[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         commview.c              \
40         cosine.c                \
41         csids.c                 \
42         dbs-etherwatch.c        \
43         erf.c                   \
44         etherpeek.c             \
45         eyesdn.c                \
46         file_access.c           \
47         file_wrappers.c         \
48         hcidump.c               \
49         i4btrace.c              \
50         iptrace.c               \
51         iseries.c               \
52         k12.c                   \
53         lanalyzer.c             \
54         libpcap.c               \
55         mpeg.c                  \
56         mpeg-audio.c            \
57         netmon.c                \
58         netscreen.c             \
59         nettl.c                 \
60         network_instruments.c   \
61         netxray.c               \
62         ngsniffer.c             \
63         pppdump.c               \
64         radcom.c                \
65         snoop.c                 \
66         toshiba.c               \
67         visual.c                \
68         vms.c                   \
69         wtap.c
70
71 # Header files that are not generated from other files
72 NONGENERATED_HEADER_FILES = \
73         5views.h                \
74         airopeek9.h             \
75         ascend.h                \
76         ascend-int.h            \
77         atm.h                   \
78         ber.h                   \
79         buffer.h                \
80         catapult_dct2000.h      \
81         commview.h              \
82         cosine.h                \
83         csids.h                 \
84         dbs-etherwatch.h        \
85         erf.h                   \
86         etherpeek.h             \
87         eyesdn.h                \
88         file_util.h             \
89         file_wrappers.h         \
90         hcidump.h               \
91         i4btrace.h              \
92         i4b_trace.h             \
93         iptrace.h               \
94         iseries.h               \
95         k12.h                   \
96         lanalyzer.h             \
97         libpcap.h               \
98         mpeg.h                  \
99         mpeg-audio.h            \
100         netmon.h                \
101         netscreen.h             \
102         nettl.h                 \
103         network_instruments.h   \
104         netxray.h               \
105         ngsniffer.h             \
106         pppdump.h               \
107         radcom.h                \
108         snoop.h                 \
109         toshiba.h               \
110         visual.h                \
111         vms.h                   \
112         wtap.h                  \
113         wtap-capture.h          \
114         wtap-int.h
115
116 # Files that generate compileable files
117 GENERATOR_SOURCES = \
118        ascend-grammar.y        \
119        ascend-scanner.l \
120        k12text.l
121
122 # The C source files they generate.
123 GENERATED_C_FILES = \
124         ascend-grammar.c        \
125         ascend-scanner.c        \
126         k12text.c
127
128 # The header files that they generate.
129 GENERATED_HEADER_FILES = \
130         ascend-grammar.h        \
131         ascend-scanner_lex.h    \
132         k12text_lex.h
133
134 # All the generated files.
135 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)