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