nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | # Makefile.am |
2 | # |
||
3 | # Wireshark - Network traffic analyzer |
||
4 | # By Gerald Combs <gerald@wireshark.org> |
||
5 | # Copyright 1998 Gerald Combs |
||
6 | # |
||
7 | # This program is free software; you can redistribute it and/or |
||
8 | # modify it under the terms of the GNU General Public License |
||
9 | # as published by the Free Software Foundation; either version 2 |
||
10 | # of the License, or (at your option) any later version. |
||
11 | # |
||
12 | # This program is distributed in the hope that it will be useful, |
||
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
15 | # GNU General Public License for more details. |
||
16 | # |
||
17 | # You should have received a copy of the GNU General Public License |
||
18 | # along with this program; if not, write to the Free Software |
||
19 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
||
20 | |||
21 | include $(top_srcdir)/Makefile.am.inc |
||
22 | include ../Makefile.am.inc |
||
23 | |||
24 | # the name of the plugin |
||
25 | PLUGIN_NAME = stats_tree |
||
26 | |||
27 | # Non-generated sources |
||
28 | NONGENERATED_C_FILES = \ |
||
29 | $(NONGENERATED_REGISTER_C_FILES) \ |
||
30 | stats_tree_plugin.c \ |
||
31 | pinfo_stats_tree.c |
||
32 | |||
33 | # Headers. |
||
34 | CLEAN_HEADER_FILES = \ |
||
35 | pinfo_stats_tree.h |
||
36 | |||
37 | HEADER_FILES = \ |
||
38 | $(CLEAN_HEADER_FILES) |
||
39 | |||
40 | plugin_LTLIBRARIES = stats_tree.la |
||
41 | |||
42 | stats_tree_la_SOURCES = \ |
||
43 | $(SRC_FILES) \ |
||
44 | $(HEADER_FILES) |
||
45 | |||
46 | stats_tree_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS) |
||
47 | |||
48 | stats_tree_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS) |
||
49 | |||
50 | stats_tree_la_LDFLAGS = $(PLUGIN_LDFLAGS) |
||
51 | |||
52 | CLEANFILES = \ |
||
53 | stats_tree \ |
||
54 | *~ |
||
55 | |||
56 | MAINTAINERCLEANFILES = \ |
||
57 | Makefile.in |
||
58 | |||
59 | EXTRA_DIST = \ |
||
60 | plugin.rc.in \ |
||
61 | CMakeLists.txt |