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 = gryphon |
||
26 | |||
27 | # Non-generated sources to be scanned for registration routines |
||
28 | NONGENERATED_REGISTER_C_FILES = \ |
||
29 | packet-gryphon.c |
||
30 | |||
31 | # Non-generated sources |
||
32 | NONGENERATED_C_FILES = \ |
||
33 | $(NONGENERATED_REGISTER_C_FILES) |
||
34 | |||
35 | # Headers. |
||
36 | CLEAN_HEADER_FILES = \ |
||
37 | packet-gryphon.h |
||
38 | |||
39 | HEADER_FILES = \ |
||
40 | $(CLEAN_HEADER_FILES) |
||
41 | |||
42 | plugin_LTLIBRARIES = gryphon.la |
||
43 | |||
44 | gryphon_la_SOURCES = \ |
||
45 | plugin.c \ |
||
46 | moduleinfo.h \ |
||
47 | $(SRC_FILES) \ |
||
48 | $(HEADER_FILES) |
||
49 | |||
50 | gryphon_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS) |
||
51 | |||
52 | gryphon_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS) |
||
53 | |||
54 | gryphon_la_LDFLAGS = $(PLUGIN_LDFLAGS) |
||
55 | |||
56 | CLEANFILES = \ |
||
57 | gryphon \ |
||
58 | *~ |
||
59 | |||
60 | MAINTAINERCLEANFILES = \ |
||
61 | Makefile.in \ |
||
62 | plugin.c |
||
63 | |||
64 | EXTRA_DIST = \ |
||
65 | plugin.rc.in \ |
||
66 | CMakeLists.txt |