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