Rename HEADER_FILES to NONGENERATED_HEADER_FILES, so that it's clear
[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 # Ethereal - Network traffic analyzer
9 # By Gerald Combs <gerald@ethereal.com>
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         buffer.c                \
37         cosine.c                \
38         csids.c                 \
39         dbs-etherwatch.c        \
40         erf.c                   \
41         etherpeek.c             \
42         eyesdn.c                \
43         file_access.c           \
44         file_wrappers.c         \
45         hcidump.c               \
46         i4btrace.c              \
47         iptrace.c               \
48         lanalyzer.c             \
49         libpcap.c               \
50         netmon.c                \
51         nettl.c                 \
52         network_instruments.c   \
53         netxray.c               \
54         ngsniffer.c             \
55         pppdump.c               \
56         radcom.c                \
57         snoop.c                 \
58         toshiba.c               \
59         visual.c                \
60         vms.c                   \
61         wtap.c
62
63 # Header files that are not generated from other files
64 NONGENERATED_HEADER_FILES = \
65         5views.h                \
66         airopeek9.h             \
67         ascend.h                \
68         ascend-int.h            \
69         atm.h                   \
70         buffer.h                \
71         cosine.h                \
72         csids.h                 \
73         dbs-etherwatch.h        \
74         erf.h                   \
75         etherpeek.h             \
76         eyesdn.h                \
77         file_wrappers.h         \
78         hcidump.h               \
79         i4btrace.h              \
80         i4b_trace.h             \
81         iptrace.h               \
82         lanalyzer.h             \
83         libpcap.h               \
84         netmon.h                \
85         nettl.h                 \
86         network_instruments.h   \
87         netxray.h               \
88         ngsniffer.h             \
89         pppdump.h               \
90         radcom.h                \
91         snoop.h                 \
92         toshiba.h               \
93         visual.h                \
94         vms.h                   \
95         wtap.h                  \
96         wtap-capture.h          \
97         wtap-int.h
98
99 # Files that generate compileable files
100 GENERATOR_SOURCES = \
101         ascend-grammar.y        \
102         ascend-scanner.l
103
104 # The C source files they generate.
105 GENERATED_C_FILES = \
106         ascend-grammar.c        \
107         ascend-scanner.c
108
109 # The header files that they generate.
110 GENERATED_HEADER_FILES = \
111         ascend-grammar.h
112
113 # All the generated files.
114 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)