nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | # Makefile.am |
2 | # |
||
3 | # Adapted by Gerhard Gappmeier for OpcUa |
||
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 | include ../Makefile.am.inc |
||
24 | |||
25 | # the name of the plugin |
||
26 | PLUGIN_NAME = opcua |
||
27 | |||
28 | # Non-generated sources to be scanned for registration routines |
||
29 | NONGENERATED_REGISTER_C_FILES = \ |
||
30 | opcua.c |
||
31 | |||
32 | # Non-generated sources |
||
33 | NONGENERATED_C_FILES = \ |
||
34 | $(NONGENERATED_REGISTER_C_FILES) \ |
||
35 | opcua_transport_layer.c \ |
||
36 | opcua_security_layer.c \ |
||
37 | opcua_application_layer.c \ |
||
38 | opcua_serviceparser.c \ |
||
39 | opcua_complextypeparser.c \ |
||
40 | opcua_enumparser.c \ |
||
41 | opcua_simpletypes.c \ |
||
42 | opcua_servicetable.c \ |
||
43 | opcua_extensionobjecttable.c \ |
||
44 | opcua_hfindeces.c \ |
||
45 | opcua_statuscode.c |
||
46 | |||
47 | # Headers. |
||
48 | CLEAN_HEADER_FILES = \ |
||
49 | opcua_complextypeparser.h \ |
||
50 | opcua_enumparser.h \ |
||
51 | opcua_hfindeces.h \ |
||
52 | opcua_statuscode.h \ |
||
53 | opcua_identifiers.h \ |
||
54 | opcua_serviceparser.h \ |
||
55 | opcua_simpletypes.h \ |
||
56 | opcua_servicetable.h \ |
||
57 | opcua_application_layer.h \ |
||
58 | opcua_security_layer.h \ |
||
59 | opcua_transport_layer.h \ |
||
60 | opcua_extensionobjectids.h \ |
||
61 | opcua_serviceids.h |
||
62 | |||
63 | HEADER_FILES = \ |
||
64 | $(CLEAN_HEADER_FILES) |
||
65 | |||
66 | plugin_LTLIBRARIES = opcua.la |
||
67 | |||
68 | opcua_la_SOURCES = \ |
||
69 | plugin.c \ |
||
70 | moduleinfo.h \ |
||
71 | $(SRC_FILES) \ |
||
72 | $(HEADER_FILES) |
||
73 | |||
74 | opcua_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS) |
||
75 | |||
76 | opcua_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS) |
||
77 | |||
78 | opcua_la_LDFLAGS = $(PLUGIN_LDFLAGS) |
||
79 | |||
80 | CLEANFILES = \ |
||
81 | opcua \ |
||
82 | *~ |
||
83 | |||
84 | MAINTAINERCLEANFILES = \ |
||
85 | Makefile.in \ |
||
86 | plugin.c |
||
87 | |||
88 | EXTRA_DIST = \ |
||
89 | plugin.rc.in \ |
||
90 | README \ |
||
91 | CMakeLists.txt |