3d92ad7bfa733a55161a25970839fa700f1e4420
[metze/wireshark/wip.git] / wiretap / Makefile.am
1 # Makefile.am
2 # Automake file for Wiretap
3 #
4 # $Id: Makefile.am,v 1.35 2001/10/19 20:18:48 guy 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 ACLOCAL_AMFLAGS = `../aclocal-flags`
26
27 noinst_LIBRARIES = libwiretap.a
28
29 #EXTRA_LIBRARIES = libwiretap.a
30
31 CLEANFILES = \
32         libwiretap.a            \
33         *~
34
35 libwiretap_a_SOURCES = \
36         ascend-grammar.y        \
37         ascend-scanner.l        \
38         ascend.c                \
39         ascend.h                \
40         ascend-int.h            \
41         buffer.c                \
42         buffer.h                \
43         csids.c                 \
44         csids.h                 \
45         dbs-etherwatch.c        \
46         dbs-etherwatch.h        \
47         etherpeek.c             \
48         etherpeek.h             \
49         file.c                  \
50         file_wrappers.c         \
51         file_wrappers.h         \
52         i4btrace.c              \
53         i4btrace.h              \
54         i4b_trace.h             \
55         iptrace.c               \
56         iptrace.h               \
57         lanalyzer.c             \
58         lanalyzer.h             \
59         libpcap.c               \
60         libpcap.h               \
61         netmon.c                \
62         netmon.h                \
63         nettl.c                 \
64         nettl.h                 \
65         netxray.c               \
66         netxray.h               \
67         ngsniffer.c             \
68         ngsniffer.h             \
69         pppdump.c               \
70         pppdump.h               \
71         radcom.c                \
72         radcom.h                \
73         snoop.c                 \
74         snoop.h                 \
75         toshiba.c               \
76         toshiba.h               \
77         vms.c                   \
78         vms.h                   \
79         wtap.c                  \
80         wtap.h                  \
81         wtap-int.h
82
83 EXTRA_DIST = \
84         ascend-grammar.c        \
85         ascend-grammar.h        \
86         ascend-scanner.c        \
87         config.h.win32          \
88         Makefile.nmake          \
89         wtap.def
90
91 # Any POSIX-compatible YACC should honor the -p flag
92 YFLAGS=-d -p ascend
93
94 ascend-scanner.c : ascend-scanner.l
95         $(LEX) -Pascend -oascend-scanner.c $(srcdir)/ascend-scanner.l