From Thierry Martin: support for reading files from Accellent 5Views LAN
[obnox/wireshark/wip.git] / wiretap / Makefile.am
1 # Makefile.am
2 # Automake file for Wiretap
3 #
4 # $Id: Makefile.am,v 1.42 2003/07/29 19:42:00 guy Exp $
5 #
6 # Ethereal - Network traffic analyzer
7 # By Gerald Combs <gerald@ethereal.com>
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23
24 ACLOCAL_AMFLAGS = `../aclocal-flags`
25
26 noinst_LIBRARIES = libwiretap.a
27
28 #EXTRA_LIBRARIES = libwiretap.a
29
30 CLEANFILES = \
31         libwiretap.a            \
32         *~
33
34 libwiretap_a_SOURCES = \
35         ascend-grammar.y        \
36         ascend-scanner.l        \
37         ascend.c                \
38         ascend.h                \
39         ascend-int.h            \
40         atm.c                   \
41         atm.h                   \
42         buffer.c                \
43         buffer.h                \
44         cosine.h                \
45         cosine.c                \
46         csids.c                 \
47         csids.h                 \
48         dbs-etherwatch.c        \
49         dbs-etherwatch.h        \
50         etherpeek.c             \
51         etherpeek.h             \
52         file.c                  \
53         file_wrappers.c         \
54         file_wrappers.h         \
55         i4btrace.c              \
56         i4btrace.h              \
57         i4b_trace.h             \
58         iptrace.c               \
59         iptrace.h               \
60         lanalyzer.c             \
61         lanalyzer.h             \
62         libpcap.c               \
63         libpcap.h               \
64         netmon.c                \
65         netmon.h                \
66         nettl.c                 \
67         nettl.h                 \
68         netxray.c               \
69         netxray.h               \
70         ngsniffer.c             \
71         ngsniffer.h             \
72         pppdump.c               \
73         pppdump.h               \
74         radcom.c                \
75         radcom.h                \
76         snoop.c                 \
77         snoop.h                 \
78         toshiba.c               \
79         toshiba.h               \
80         visual.c                \
81         visual.h                \
82         vms.c                   \
83         vms.h                   \
84         wtap.c                  \
85         wtap.h                  \
86         wtap-capture.h          \
87         wtap-int.h              \
88         5views.c                \
89         5views.h
90
91 EXTRA_DIST = \
92         README.developer        \
93         ascend-grammar.c        \
94         ascend-grammar.h        \
95         ascend-scanner.c        \
96         config.h.win32          \
97         Makefile.nmake          \
98         wtap.def
99
100 # Any POSIX-compatible YACC should honor the -p flag
101 AM_YFLAGS=-d -p ascend
102
103 ascend-scanner.c : ascend-scanner.l
104         $(LEX) -Pascend -oascend-scanner.c $(srcdir)/ascend-scanner.l