smb-direct fragmentation
[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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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         ascendtext.c            \
35         atm.c                   \
36         ber.c                   \
37         btsnoop.c               \
38         buffer.c                \
39         camins.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         eyesdn.c                \
49         file_access.c           \
50         file_wrappers.c         \
51         hcidump.c               \
52         i4btrace.c              \
53         ipfix.c                 \
54         iptrace.c               \
55         iseries.c               \
56         mime_file.c             \
57         k12.c                   \
58         lanalyzer.c             \
59         libpcap.c               \
60         merge.c                 \
61         mpeg.c                  \
62         mp2t.c                  \
63         netmon.c                \
64         netscaler.c             \
65         netscreen.c             \
66         nettl.c                 \
67         network_instruments.c   \
68         netxray.c               \
69         ngsniffer.c             \
70         packetlogger.c          \
71         pcap-common.c           \
72         pcapng.c                \
73         peekclassic.c           \
74         peektagged.c            \
75         pppdump.c               \
76         radcom.c                \
77         snoop.c                 \
78         stanag4607.c            \
79         tnef.c                  \
80         toshiba.c               \
81         visual.c                \
82         vms.c                   \
83         vwr.c           \
84         wtap.c
85
86 # Header files that are not generated from other files
87 NONGENERATED_HEADER_FILES = \
88         5views.h                \
89         aethra.h                \
90         ascendtext.h            \
91         ascend-int.h            \
92         atm.h                   \
93         ber.h                   \
94         buffer.h                \
95         btsnoop.h               \
96         camins.h                \
97         catapult_dct2000.h      \
98         commview.h              \
99         cosine.h                \
100         csids.h                 \
101         daintree-sna.h          \
102         dbs-etherwatch.h        \
103         dct3trace.h             \
104         erf.h                   \
105         eyesdn.h                \
106         file_wrappers.h         \
107         hcidump.h               \
108         i4btrace.h              \
109         i4b_trace.h             \
110         ipfix.h                 \
111         iptrace.h               \
112         iseries.h               \
113         mime_file.h             \
114         k12.h                   \
115         lanalyzer.h             \
116         libpcap.h               \
117         merge.h                 \
118         mpeg.h                  \
119         mpeg.h                  \
120         mp2t.h                  \
121         netmon.h                \
122         netscreen.h             \
123         netscaler.h             \
124         nettl.h                 \
125         network_instruments.h   \
126         netxray.h               \
127         ngsniffer.h             \
128         packetlogger.h          \
129         pcap-common.h           \
130         pcap-encap.h            \
131         pcapng.h                \
132         peekclassic.h           \
133         peektagged.h            \
134         pppdump.h               \
135         radcom.h                \
136         snoop.h                 \
137         stanag4607.h            \
138         tnef.h                  \
139         toshiba.h               \
140         visual.h                \
141         vms.h                   \
142         vwr.h           \
143         wtap.h                  \
144         wtap-int.h
145
146 # Files that generate compileable files
147 GENERATOR_FILES = \
148        ascend.y        \
149        ascend_scanner.l \
150        k12text.l
151
152 # The C source files they generate.
153 GENERATED_C_FILES = \
154         ascend.c        \
155         ascend_scanner.c        \
156         k12text.c
157
158 # The header files that they generate.
159 GENERATED_HEADER_FILES = \
160         ascend.h        \
161         ascend_scanner_lex.h    \
162         k12text_lex.h
163
164 # All the generated files.
165 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)