nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | # Makefile.am |
2 | # Automake file for Wireshark |
||
3 | # |
||
4 | # Wireshark - Network traffic analyzer |
||
5 | # By Gerald Combs <gerald@wireshark.org> |
||
6 | # Copyright 1998 Gerald Combs |
||
7 | # |
||
8 | # This program is free software; you can redistribute it and/or |
||
9 | # modify it under the terms of the GNU General Public License |
||
10 | # as published by the Free Software Foundation; either version 2 |
||
11 | # of the License, or (at your option) any later version. |
||
12 | # |
||
13 | # This program is distributed in the hope that it will be useful, |
||
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
16 | # GNU General Public License for more details. |
||
17 | # |
||
18 | # You should have received a copy of the GNU General Public License |
||
19 | # along with this program; if not, write to the Free Software |
||
20 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
||
21 | |||
22 | include $(top_srcdir)/Makefile.am.inc |
||
23 | |||
24 | SUBDIRS = lemon |
||
25 | |||
26 | EXTRA_DIST = \ |
||
27 | asn2deb \ |
||
28 | asn2wrs.py \ |
||
29 | checkfiltername.pl \ |
||
30 | checkhf.pl \ |
||
31 | checklicenses.py \ |
||
32 | colorfilters2js.pl \ |
||
33 | commit-msg \ |
||
34 | compare-abis.sh \ |
||
35 | checkAPIs.pl \ |
||
36 | convert-proto-tree-new.awk \ |
||
37 | convert_expert_add_info_format.pl \ |
||
38 | convert_proto_tree_add_text.pl \ |
||
39 | cppcheck \ |
||
40 | debian-setup.sh \ |
||
41 | dfilter-test.py \ |
||
42 | dftestfiles \ |
||
43 | dftestlib \ |
||
44 | extract_asn1_from_spec.pl \ |
||
45 | fix-encoding-args.pl \ |
||
46 | fixhf.pl \ |
||
47 | ftsanity.py \ |
||
48 | fuzz-test.sh \ |
||
49 | gen-bugnote \ |
||
50 | generate-bacnet-vendors.py \ |
||
51 | generate-sysdig-event.py \ |
||
52 | Get-HardenFlags.ps1 \ |
||
53 | git-compare-abis.sh \ |
||
54 | git-export-release.sh \ |
||
55 | html2text.py \ |
||
56 | idl2deb \ |
||
57 | idl2wrs \ |
||
58 | indexcap.py \ |
||
59 | install_rpms_for_devel.sh \ |
||
60 | lex.py \ |
||
61 | list_protos_in_cap.sh \ |
||
62 | make-dissector-reg.py \ |
||
63 | make-manuf \ |
||
64 | make-sminmpec.pl \ |
||
65 | make-services.pl \ |
||
66 | make-services.py \ |
||
67 | make-tap-reg.py \ |
||
68 | make-usb.py \ |
||
69 | make_charset_table.c \ |
||
70 | msnchat \ |
||
71 | ncp2222.py \ |
||
72 | netscreen2dump.py \ |
||
73 | npl \ |
||
74 | parse_xml2skinny_dissector.py \ |
||
75 | pidl \ |
||
76 | pkt-from-core.py \ |
||
77 | pre-commit \ |
||
78 | pre-commit-ignore.conf \ |
||
79 | pre-commit-ignore.py \ |
||
80 | process-x11-fields.pl \ |
||
81 | process-x11-xcb.pl \ |
||
82 | randpkt-test.sh \ |
||
83 | rdps.py \ |
||
84 | runa2x.sh \ |
||
85 | runlex.sh \ |
||
86 | setuid-root.pl.in \ |
||
87 | test-common.sh \ |
||
88 | test-captures.sh \ |
||
89 | textify.ps1 \ |
||
90 | tpg \ |
||
91 | usb-ptp-extract-models.pl \ |
||
92 | usb-ptp-extract-models.txt \ |
||
93 | valgrind-wireshark.sh \ |
||
94 | vg-suppressions \ |
||
95 | win-setup.ps1 \ |
||
96 | wireshark_be.py \ |
||
97 | wireshark_gen.py \ |
||
98 | WiresharkXML.py \ |
||
99 | ws-coding-style.cfg \ |
||
100 | yacc.py |
||
101 | |||
102 | noinst_SCRIPTS = setuid-root.pl |
||
103 | |||
104 | setuid-root.pl: setuid-root.pl.in Makefile |
||
105 | $(AM_V_SED)$(SED) \ |
||
106 | -e 's,@BIN_PREFIX\@,$(bindir),' \ |
||
107 | -e 's,@TSHARK_BIN\@,$(tshark_bin)$(EEXT),' \ |
||
108 | -e 's,@DUMPCAP_BIN\@,$(dumpcap_bin)$(EEXT),' \ |
||
109 | < $(srcdir)/setuid-root.pl.in > setuid-root.pl; \ |
||
110 | chmod +x setuid-root.pl |
||
111 | |||
112 | CLEANFILES = \ |
||
113 | *.pyc |
||
114 | |||
115 | DISTCLEANFILES = \ |
||
116 | setuid-root.pl |
||
117 | |||
118 | MAINTAINERCLEANFILES = \ |
||
119 | Makefile.in |