X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2FMakefile.am;h=c47d581b8c819c3960bf1a5de0804b9eb545ea8d;hb=1670bffdf312795f277237062cca264967f13fd0;hp=4b78b4778f6be7f709e48b824fcefa4a7b64581c;hpb=b1bbab84d812a965cb0ce82a733d033c06f45dfd;p=babeltrace.git diff --git a/lib/Makefile.am b/lib/Makefile.am index 4b78b477..c47d581b 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = prio_heap . +SUBDIRS = prio_heap plugin component . AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include @@ -9,9 +9,28 @@ libbabeltrace_la_SOURCES = babeltrace.c \ context.c \ trace-handle.c \ trace-collection.c \ - registry.c + registry.c \ + values.c \ + ref.c + +libbabeltrace_la_LDFLAGS = -version-info $(BABELTRACE_LIBRARY_VERSION) + +if ENABLE_DEBUG_INFO +noinst_LTLIBRARIES = libdebug-info.la + +libdebug_info_la_SOURCES = debug-info.c \ + bin-info.c \ + dwarf.c \ + crc32.c \ + utils.c +libdebug_info_la_LDFLAGS = -lelf -ldw +libdebug_info_la_LIBADD = libbabeltrace.la +endif libbabeltrace_la_LIBADD = \ prio_heap/libprio_heap.la \ $(top_builddir)/types/libbabeltrace_types.la \ - $(top_builddir)/compat/libcompat.la + $(top_builddir)/compat/libcompat.la \ + component/libcomponent.la \ + plugin/libplugin.la \ + $(top_builddir)/common/libbabeltrace-common.la