Add base plug-in skeletons
[babeltrace.git] / plugins / Makefile.am
... / ...
CommitLineData
1AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include
2
3SUBDIRS = . ctf text
4
5lib_LTLIBRARIES = libbabeltrace-plugin.la
6
7# Plug-in system library
8libbabeltrace_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 library objects.
18libbabeltrace_plugin_la_LDFLAGS = \
19 -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION)
20
21libbabeltrace_plugin_la_LIBADD = \
22 $(top_builddir)/lib/libbabeltrace.la
This page took 0.023015 seconds and 4 git commands to generate.