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 = ethercat |
||
26 | |||
27 | # Non-generated sources to be scanned for registration routines |
||
28 | NONGENERATED_REGISTER_C_FILES = \ |
||
29 | packet-ams.c \ |
||
30 | packet-ecatmb.c \ |
||
31 | packet-esl.c \ |
||
32 | packet-ethercat-datagram.c \ |
||
33 | packet-ethercat-frame.c \ |
||
34 | packet-ioraw.c \ |
||
35 | packet-nv.c |
||
36 | |||
37 | # Non-generated sources |
||
38 | NONGENERATED_C_FILES = \ |
||
39 | $(NONGENERATED_REGISTER_C_FILES) |
||
40 | |||
41 | # Headers. |
||
42 | CLEAN_HEADER_FILES = \ |
||
43 | packet-ams.h \ |
||
44 | packet-ecatmb.h \ |
||
45 | packet-ethercat-datagram.h \ |
||
46 | packet-ethercat-frame.h \ |
||
47 | packet-ioraw.h \ |
||
48 | packet-nv.h |
||
49 | |||
50 | HEADER_FILES = \ |
||
51 | $(CLEAN_HEADER_FILES) |
||
52 | |||
53 | plugin_LTLIBRARIES = ethercat.la |
||
54 | |||
55 | ethercat_la_SOURCES = \ |
||
56 | plugin.c \ |
||
57 | moduleinfo.h \ |
||
58 | $(SRC_FILES) \ |
||
59 | $(HEADER_FILES) |
||
60 | |||
61 | ethercat_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS) |
||
62 | |||
63 | ethercat_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS) |
||
64 | |||
65 | ethercat_la_LDFLAGS = $(PLUGIN_LDFLAGS) |
||
66 | |||
67 | CLEANFILES = \ |
||
68 | ethercat \ |
||
69 | *~ |
||
70 | |||
71 | MAINTAINERCLEANFILES = \ |
||
72 | Makefile.in \ |
||
73 | plugin.c |
||
74 | |||
75 | EXTRA_DIST = \ |
||
76 | plugin.rc.in \ |
||
77 | CMakeLists.txt |