Move the file utility functions from wiretap to libwsutil so that
[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         btsnoop.c               \
38         buffer.c                \
39         catapult_dct2000.c      \
40         commview.c              \
41         cosine.c                \
42         csids.c                 \
43         dbs-etherwatch.c        \
44         erf.c                   \
45         etherpeek.c             \
46         eyesdn.c                \
47         file_access.c           \
48         file_wrappers.c         \
49         hcidump.c               \
50         i4btrace.c              \
51         iptrace.c               \
52         iseries.c               \
53         k12.c                   \
54         lanalyzer.c             \
55         libpcap.c               \
56         mpeg.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         btsnoop.h               \
82         catapult_dct2000.h      \
83         commview.h              \
84         cosine.h                \
85         csids.h                 \
86         dbs-etherwatch.h        \
87         erf.h                   \
88         etherpeek.h             \
89         eyesdn.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         netmon.h                \
101         netscreen.h             \
102         nettl.h                 \
103         network_instruments.h   \
104         netxray.h               \
105         ngsniffer.h             \
106         pcapng.h                \
107         pppdump.h               \
108         radcom.h                \
109         snoop.h                 \
110         toshiba.h               \
111         visual.h                \
112         vms.h                   \
113         wtap.h                  \
114         wtap-int.h
115
116 # Files that generate compileable files
117 GENERATOR_FILES = \
118        ascend-grammar.y        \
119        ascend-scanner.l \
120        k12text.l
121
122 # The C source files they generate.
123 GENERATED_C_FILES = \
124         ascend-grammar.c        \
125         ascend-scanner.c        \
126         k12text.c
127
128 # The header files that they generate.
129 GENERATED_HEADER_FILES = \
130         ascend-grammar.h        \
131         ascend-scanner_lex.h    \
132         k12text_lex.h
133
134 # All the generated files.
135 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)