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