Introduce bt_plugin and bt_component_class
[babeltrace.git] / plugins / Makefile.am
1 AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include
2
3 SUBDIRS = .
4
5 lib_LTLIBRARIES = libbabeltrace-plugin.la
6
7 # Plug-in system library
8 libbabeltrace_plugin_la_SOURCES = \
9 component.c \
10 component-class.c \
11 component-factory.c \
12 plugin.c \
13 source.c \
14 sink.c \
15 iterator.c
16
17 # Request that the linker keeps all static librarie objects.
18 libbabeltrace_plugin_la_LDFLAGS = \
19 -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION)
20
21 libbabeltrace_plugin_la_LIBADD = \
22 $(top_builddir)/lib/libbabeltrace.la
This page took 0.032836 seconds and 5 git commands to generate.