opa: Add dissectors for Intel’s Omni-Path Architecture (OPA)
[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 # Wireshark - Network traffic analyzer
7 # By Gerald Combs <gerald@wireshark.org>
8 # Copyright 1998 Gerald Combs
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License
12 # as published by the Free Software Foundation; either version 2
13 # of the License, or (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
24 # C source files that are part of the Wiretap source; this includes only
25 # .c files, not YACC or Lex or... files (as Makefile.nmake maps this list
26 # into a list of object files by replacing ".c" with ".obj") or files
27 # generated from YACC or Lex files (as Automake doesn't want them in
28 # _SOURCES variables).
29 NONGENERATED_C_FILES = \
30         5views.c                \
31         aethra.c                \
32         ascendtext.c            \
33         atm.c                   \
34         ber.c                   \
35         btsnoop.c               \
36         camins.c                \
37         capsa.c                 \
38         catapult_dct2000.c      \
39         commview.c              \
40         cosine.c                \
41         csids.c                 \
42         daintree-sna.c          \
43         dbs-etherwatch.c        \
44         dct3trace.c             \
45         erf.c                   \
46         eyesdn.c                \
47         file_access.c           \
48         file_wrappers.c         \
49         hcidump.c               \
50         i4btrace.c              \
51         ipfix.c                 \
52         iptrace.c               \
53         iseries.c               \
54         mime_file.c             \
55         json.c          \
56         k12.c                   \
57         lanalyzer.c             \
58         logcat_text.c           \
59         logcat.c                \
60         libpcap.c               \
61         merge.c                 \
62         mpeg.c                  \
63         mplog.c                 \
64         mp2t.c                  \
65         netmon.c                \
66         netscaler.c             \
67         netscreen.c             \
68         nettl.c                 \
69         nettrace_3gpp_32_423.c  \
70         network_instruments.c   \
71         netxray.c               \
72         ngsniffer.c             \
73         packetlogger.c          \
74         pcap-common.c           \
75         pcapng.c                \
76         peekclassic.c           \
77         peektagged.c            \
78         pppdump.c               \
79         radcom.c                \
80         snoop.c                 \
81         stanag4607.c            \
82         tnef.c                  \
83         toshiba.c               \
84         visual.c                \
85         vms.c                   \
86         vwr.c           \
87         wtap.c                  \
88         wtap_opttypes.c
89
90 # Header files that are not generated from other files
91 NONGENERATED_HEADER_FILES = \
92         5views.h                \
93         aethra.h                \
94         ascendtext.h            \
95         ascend-int.h            \
96         atm.h                   \
97         ber.h                   \
98         btsnoop.h               \
99         camins.h                \
100         capsa.h                 \
101         catapult_dct2000.h      \
102         commview.h              \
103         cosine.h                \
104         csids.h                 \
105         daintree-sna.h          \
106         dbs-etherwatch.h        \
107         dct3trace.h             \
108         erf.h                   \
109         eyesdn.h                \
110         file_wrappers.h         \
111         hcidump.h               \
112         i4btrace.h              \
113         i4b_trace.h             \
114         ipfix.h                 \
115         iptrace.h               \
116         iseries.h               \
117         json.h          \
118         mime_file.h             \
119         k12.h                   \
120         lanalyzer.h             \
121         libpcap.h               \
122         logcat.h                \
123         logcat_text.h           \
124         merge.h                 \
125         mpeg.h                  \
126         mplog.h                 \
127         mp2t.h                  \
128         netmon.h                \
129         netscreen.h             \
130         netscaler.h             \
131         nettl.h                 \
132         nettrace_3gpp_32_423.h  \
133         network_instruments.h   \
134         netxray.h               \
135         ngsniffer.h             \
136         packetlogger.h          \
137         pcap-common.h           \
138         pcap-encap.h            \
139         pcapng.h                \
140         pcapng_module.h         \
141         peekclassic.h           \
142         peektagged.h            \
143         pppdump.h               \
144         radcom.h                \
145         snoop.h                 \
146         stanag4607.h            \
147         tnef.h                  \
148         toshiba.h               \
149         visual.h                \
150         vms.h                   \
151         vwr.h           \
152         wtap.h                  \
153         wtap_opttypes.h \
154         wtap-int.h
155
156 # Files that generate compileable files
157 GENERATOR_FILES = \
158        ascend.y        \
159        ascend_scanner.l \
160        k12text.l
161
162 # The C source files they generate.
163 GENERATED_C_FILES = \
164         ascend.c        \
165         ascend_scanner.c        \
166         k12text.c
167
168 # The header files that they generate.
169 GENERATED_HEADER_FILES = \
170         ascend.h        \
171         ascend_scanner_lex.h    \
172         k12text_lex.h
173
174 # All the generated files.
175 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)