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