Initial checkin of the 32 bit tektronix k12 binary format (rf5)
[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 # 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         k12.c                   \
49         lanalyzer.c             \
50         libpcap.c               \
51         netmon.c                \
52         nettl.c                 \
53         network_instruments.c   \
54         netxray.c               \
55         ngsniffer.c             \
56         pppdump.c               \
57         radcom.c                \
58         snoop.c                 \
59         toshiba.c               \
60         visual.c                \
61         vms.c                   \
62         wtap.c
63
64 # Header files that are not generated from other files
65 NONGENERATED_HEADER_FILES = \
66         5views.h                \
67         airopeek9.h             \
68         ascend.h                \
69         ascend-int.h            \
70         atm.h                   \
71         buffer.h                \
72         cosine.h                \
73         csids.h                 \
74         dbs-etherwatch.h        \
75         erf.h                   \
76         etherpeek.h             \
77         eyesdn.h                \
78         file_wrappers.h         \
79         hcidump.h               \
80         i4btrace.h              \
81         i4b_trace.h             \
82         iptrace.h               \
83         k12.h                   \
84         lanalyzer.h             \
85         libpcap.h               \
86         netmon.h                \
87         nettl.h                 \
88         network_instruments.h   \
89         netxray.h               \
90         ngsniffer.h             \
91         pppdump.h               \
92         radcom.h                \
93         snoop.h                 \
94         toshiba.h               \
95         visual.h                \
96         vms.h                   \
97         wtap.h                  \
98         wtap-capture.h          \
99         wtap-int.h
100
101 # Files that generate compileable files
102 GENERATOR_SOURCES = \
103         ascend-grammar.y        \
104         ascend-scanner.l
105
106 # The C source files they generate.
107 GENERATED_C_FILES = \
108         ascend-grammar.c        \
109         ascend-scanner.c
110
111 # The header files that they generate.
112 GENERATED_HEADER_FILES = \
113         ascend-grammar.h
114
115 # All the generated files.
116 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)