CMake: API reference fixes.
[metze/wireshark/wip.git] / plugins / epan / pluginifdemo / Makefile.am
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 $(top_srcdir)/plugins/epan/Makefile.am.inc
23
24 # the name of the plugin
25 PLUGIN_NAME = pluginifdemo
26
27 PLUGIN_VERSION = 0.0.1
28
29 BUILT_SOURCES = \
30         plugin.c
31
32 # Non-generated sources to be scanned for registration routines
33 NONGENERATED_REGISTER_C_FILES = \
34         pluginifdemo.c
35
36 # Non-generated sources
37 NONGENERATED_C_FILES = \
38         $(NONGENERATED_REGISTER_C_FILES)
39
40 # Headers.
41 CLEAN_HEADER_FILES = \
42         pluginifdemo.h
43
44 HEADER_FILES = \
45         $(CLEAN_HEADER_FILES)
46
47 epan_plugin_LTLIBRARIES = pluginifdemo.la
48
49 pluginifdemo_la_SOURCES = \
50         $(SRC_FILES)    \
51         $(HEADER_FILES)
52
53 nodist_pluginifdemo_la_SOURCES = \
54         plugin.c
55
56 pluginifdemo_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS)
57
58 pluginifdemo_la_CFLAGS = $(AM_CFLAGS) $(PLUGIN_CFLAGS)
59
60 pluginifdemo_la_LDFLAGS = $(PLUGIN_LDFLAGS)
61
62 DISTCLEANFILES = \
63         plugin.c
64
65 EXTRA_DIST = \
66         CMakeLists.txt