ome files were left even after "make maintainer-clean". Found
[obnox/wireshark/wip.git] / tools / Makefile.am
index aa61a6167e54d6e2a359c0a71ba127b6dd570ea4..fd258dba77d440fedb2db50042806b8c38dfbbab 100644 (file)
@@ -1,10 +1,10 @@
 # Makefile.am
-# Automake file for Ethereal
+# Automake file for Wireshark
 #
 # $Id$
 #
-# Ethereal - Network traffic analyzer
-# By Gerald Combs <gerald@ethereal.com>
+# Wireshark - Network traffic analyzer
+# By Gerald Combs <gerald@wireshark.org>
 # Copyright 1998 Gerald Combs
 #
 # This program is free software; you can redistribute it and/or
 
 SUBDIRS = lemon
 
+PIDL_FILES= \
+       pidl/MANIFEST                                   \
+       pidl/Makefile.PL                                \
+       pidl/README                                     \
+       pidl/TODO                                       \
+       pidl/expr.yp                                    \
+       pidl/idl.yp                                     \
+       pidl/lib/Parse/Pidl.pm                          \
+       pidl/lib/Parse/Pidl/Compat.pm                   \
+       pidl/lib/Parse/Pidl/Dump.pm                     \
+       pidl/lib/Parse/Pidl/Expr.pm                     \
+       pidl/lib/Parse/Pidl/IDL.pm                      \
+       pidl/lib/Parse/Pidl/NDR.pm                      \
+       pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm         \
+       pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm         \
+       pidl/lib/Parse/Pidl/Samba4.pm                   \
+       pidl/lib/Parse/Pidl/Samba4/EJS.pm               \
+       pidl/lib/Parse/Pidl/Samba4/Header.pm            \
+       pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm        \
+       pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm        \
+       pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm        \
+       pidl/lib/Parse/Pidl/Samba4/SWIG.pm              \
+       pidl/lib/Parse/Pidl/Samba4/TDR.pm               \
+       pidl/lib/Parse/Pidl/Samba4/Template.pm          \
+       pidl/lib/Parse/Pidl/Typelist.pm                 \
+       pidl/lib/Parse/Pidl/Util.pm                     \
+       pidl/lib/Parse/Pidl/Wireshark/Conformance.pm    \
+       pidl/lib/Parse/Pidl/Wireshark/NDR.pm            \
+       pidl/lib/Parse/Yapp/Driver.pm                   \
+       pidl/pidl                                       \
+       pidl/ref_notes.txt                              \
+       pidl/smb_interfaces.pm                          \
+       pidl/smb_interfaces.yp                          \
+       pidl/tests/Util.pm                              \
+       pidl/tests/dump.pl                              \
+       pidl/tests/header.pl                            \
+       pidl/tests/ndr.pl                               \
+       pidl/tests/ndr_align.pl                         \
+       pidl/tests/ndr_alloc.pl                         \
+       pidl/tests/ndr_array.pl                         \
+       pidl/tests/ndr_compat.pl                        \
+       pidl/tests/ndr_deprecations.pl                  \
+       pidl/tests/ndr_fullptr.pl                       \
+       pidl/tests/ndr_refptr.pl                        \
+       pidl/tests/ndr_represent.pl                     \
+       pidl/tests/ndr_simple.pl                        \
+       pidl/tests/ndr_string.pl                        \
+       pidl/tests/ndr_tagtype.pl                       \
+       pidl/tests/parse_idl.pl                         \
+       pidl/tests/samba-ndr.pl                         \
+       pidl/tests/samba3-cli.pl                        \
+       pidl/tests/tdr.pl                               \
+       pidl/tests/test_util.pl                         \
+       pidl/tests/typelist.pl                          \
+       pidl/tests/util.pl                              \
+       pidl/tests/wireshark-conf.pl                    \
+       pidl/tests/wireshark-ndr.pl
+
 EXTRA_DIST = \
-       asn2eth.py              \
-       EtherealXML.py          \
-       Makefile.nmake          \
-       cvsdiff-fix.py          \
-       dfilter-test.py         \
-       fuzz-test.sh            \
-       msnchat                 \
-       lex.py                  \
-       netscreen2dump.py       \
-       pkt-from-core.py        \
-       unix2dos.pl             \
-       win32-setup.sh          \
+       $(PIDL_FILES)                                   \
+       WiresharkXML.py                                 \
+       Makefile.nmake                                  \
+       asn2wrs.py                                      \
+       cvsdiff-fix.py                                  \
+       dfilter-test.py                                 \
+       fuzz-test.sh                                    \
+       idl2wrs.sh                                      \
+       lex.py                                          \
+       make-dissector-reg                              \
+       make-dissector-reg.py                           \
+       msnchat                                         \
+       netscreen2dump.py                               \
+       pkt-from-core.py                                \
+       runlex.sh                                       \
+       unix2dos.pl                                     \
+       win32-setup.sh                                  \
+       wireshark_be.py                                 \
+       wireshark_gen.py                                \
        yacc.py
+
+noinst_SCRIPTS = setuid-root.pl
+setuid-root.pl: setuid-root.pl.in Makefile
+       sed \
+               -e 's,@BIN_PREFIX\@,$(bindir),' \
+               -e 's,@TSHARK_BIN\@,$(tshark_bin)$(EEXT),' \
+               -e 's,@DUMPCAP_BIN\@,$(dumpcap_bin)$(EEXT),' \
+               < $(srcdir)/setuid-root.pl.in > setuid-root.pl
+       chmod +x setuid-root.pl
+
+CLEANFILES = \
+       *.pyc
+
+DISTCLEANFILES = \
+       setuid-root.pl
+
+MAINTAINERCLEANFILES = \
+       Makefile.in
+