Add a module to wiretap to be able to read trace files from Toshiba's
[obnox/wireshark/wip.git] / wiretap / Makefile.am
1 # Makefile.am
2 # Automake file for Wiretap
3 #
4 # $Id: Makefile.am,v 1.24 1999/10/31 17:46:04 gram Exp $
5 #
6 # Ethereal - Network traffic analyzer
7 # By Gerald Combs <gerald@zing.org>
8 # Copyright 1998 Gerald Combs
9 #
10
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License
13 # as published by the Free Software Foundation; either version 2
14 # of the License, or (at your option) any later version.
15
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24
25 noinst_LIBRARIES = libwiretap.a
26
27 #EXTRA_LIBRARIES = libwiretap.a
28
29 CLEANFILES = \
30         libwiretap.a            \
31         *~
32
33 libwiretap_a_SOURCES = \
34         ascend-grammar.y        \
35         ascend-scanner.l        \
36         ascend.c                \
37         ascend.h                \
38         ascend-int.h            \
39         buffer.c                \
40         buffer.h                \
41         file.c                  \
42         file.h                  \
43         iptrace.c               \
44         iptrace.h               \
45         lanalyzer.c             \
46         lanalyzer.h             \
47         libpcap.c               \
48         libpcap.h               \
49         netmon.c                \
50         netmon.h                \
51         nettl.c                 \
52         nettl.h                 \
53         netxray.c               \
54         netxray.h               \
55         ngsniffer.c             \
56         ngsniffer.h             \
57         radcom.c                \
58         radcom.h                \
59         snoop.c                 \
60         snoop.h                 \
61         toshiba.c               \
62         toshiba.h               \
63         wtap.c                  \
64         wtap.h
65
66 EXTRA_DIST = \
67         ascend-grammar.c        \
68         ascend-grammar.h        \
69         ascend-scanner.c        \
70         config.h.win32          \
71         Makefile.nmake
72
73 # Any POSIX-compatible YACC should honor the -p flag
74 YFLAGS=-d -p ascend
75
76 ascend-scanner.c : ascend-scanner.l
77         $(LEX) -Pascend -t $(srcdir)/ascend-scanner.l > ascend-scanner.c