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 = profinet |
||
26 | |||
27 | # Non-generated sources to be scanned for registration routines |
||
28 | NONGENERATED_REGISTER_C_FILES = \ |
||
29 | packet-dcerpc-pn-io.c \ |
||
30 | packet-dcom-cba.c \ |
||
31 | packet-dcom-cba-acco.c \ |
||
32 | packet-pn-dcp.c \ |
||
33 | packet-pn-mrp.c \ |
||
34 | packet-pn-mrrt.c \ |
||
35 | packet-pn-ptcp.c \ |
||
36 | packet-pn-rt.c \ |
||
37 | packet-pn-rtc-one.c |
||
38 | |||
39 | # Non-generated sources |
||
40 | NONGENERATED_C_FILES = \ |
||
41 | $(NONGENERATED_REGISTER_C_FILES) \ |
||
42 | packet-pn.c |
||
43 | |||
44 | # Headers. |
||
45 | CLEAN_HEADER_FILES = \ |
||
46 | packet-dcom-cba-acco.h \ |
||
47 | packet-pn.h |
||
48 | |||
49 | HEADER_FILES = \ |
||
50 | $(CLEAN_HEADER_FILES) |
||
51 | |||
52 | plugin_LTLIBRARIES = profinet.la |
||
53 | |||
54 | profinet_la_SOURCES = \ |
||
55 | plugin.c \ |
||
56 | moduleinfo.h \ |
||
57 | $(SRC_FILES) \ |
||
58 | $(HEADER_FILES) |
||
59 | |||
60 | profinet_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS) |
||
61 | |||
62 | profinet_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS) |
||
63 | |||
64 | profinet_la_LDFLAGS = $(PLUGIN_LDFLAGS) |
||
65 | |||
66 | CLEANFILES = \ |
||
67 | profinet \ |
||
68 | *~ |
||
69 | |||
70 | MAINTAINERCLEANFILES = \ |
||
71 | Makefile.in \ |
||
72 | plugin.c |
||
73 | |||
74 | EXTRA_DIST = \ |
||
75 | plugin.rc.in \ |
||
76 | CMakeLists.txt |